/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Open Sans', Arial, sans-serif; font-size: 15px; line-height: 1.7; color: #333; }
a { color: #68a4e0; text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1080px; margin: 0 auto; padding: 0 30px; }

/* === Header === */
header { background: #f7f7f7; border-bottom: 1px solid #e5e5e5; position: sticky; top: 0; z-index: 100; transition: all 0.3s; max-width: 1080px; margin: 0 auto; }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 90px; transition: height 0.3s; }
.logo img { height: 73px; width: auto; transition: height 0.3s; }
header.scrolled .header-inner { height: 60px; }
header.scrolled .logo img { height: 40px; }
nav { display: flex; gap: 25px; }
nav a { color: #333; font-size: 16px; font-weight: 600; }
nav a:hover, nav a.active { color: #68a4e0; text-decoration: none; }
.menu-toggle { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: #333; }

/* === Slider === */
.slider-wrapper { max-width: 1080px; margin: 25px auto 30px; }
.slider { background: #68a4e0; overflow: hidden; position: relative; }
.slides { position: relative; }
.slide { display: none; }
.slide.active { display: block; }
.slide-inner { display: flex; align-items: center; }
.slide-image { flex: 0 0 45%; line-height: 0; }
.slide-image img { width: 100%; display: block; }
.slide-text { flex: 1; padding: 30px 40px 30px 30px; color: #fff; display: flex; flex-direction: column; justify-content: center; }
.slide-text h2 { font-size: 28px; font-weight: 300; margin-bottom: 12px; }
.slide-text h2 a { color: #fff; }
.slide-text h2 a:hover { text-decoration: underline; }
.slide-text p { font-size: 15px; margin-bottom: 20px; opacity: 0.9; }
.slide-text .btn-slide {
  color: #fff; font-size: 15px; align-self: flex-end;
  border: none; border-radius: 3px;
  padding: 6px 20px; transition: all 0.2s;
}
.slide-text .btn-slide:hover { background: rgba(0,0,0,0.1); text-decoration: none; padding-right: 28px; }
.slide-text .btn-slide:after { content: ' \203A'; font-size: 18px; vertical-align: middle; margin-left: 4px; }
.slider-dots { text-align: center; padding: 10px 0; position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; }
.slider { position: relative; }
.slider-dots span { display: inline-block; width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.4); margin: 0 4px; cursor: pointer; }
.slider-dots span.active { background: #fff; }

/* === Category Cards === */
.categories { padding: 50px 0; }
.card-row { display: flex; gap: 30px; margin-bottom: 40px; }
.card { flex: 1; text-align: center; display: flex; flex-direction: column; }
.card h3 { font-size: 18px; font-weight: 600; margin-bottom: 12px; color: #333; }
.card img { width: 100%; margin-bottom: 15px; box-shadow: 0 2px 8px rgba(0,0,0,0.15); }
.card p { text-align: justify; font-size: 14px; margin-bottom: 15px; flex: 1; }
.card .btn { align-self: flex-end; padding: 4px 8px 4px 14px; border-radius: 3px; transition: background 0.2s, padding 0.2s; }
.card .btn:after { content: ' \203A'; font-size: 18px; vertical-align: middle; }
.card .btn:hover { background: rgba(104,164,224,0.1); text-decoration: none; padding: 4px 14px 4px 8px; }

/* === Buttons === */
.btn { display: inline-block; color: #68a4e0; font-size: 15px; font-weight: 400; }
.btn:hover { text-decoration: underline; }


/* === Page Content === */
.page-content { padding: 40px 30px 60px; }
.page-content h2 { font-size: 26px; font-weight: 700; color: #333; margin-bottom: 25px; }
.content-with-image { margin-bottom: 30px; overflow: hidden; }
.content-with-image .content-image { float: right; margin: 0 0 25px 40px; }
.content-with-image .content-image img { max-width: 300px; }
.content-text p { text-align: left; margin-bottom: 15px; }
.content-text-full { margin-bottom: 20px; }
.content-text-full p { text-align: left; margin-bottom: 15px; }

/* === Contact Form === */
.contact-form-wrapper { max-width: 600px; margin-top: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 600; font-size: 14px; }
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
  width: 100%; padding: 12px 16px; border: 1px solid #ccc; border-radius: 3px;
  font-size: 14px; font-family: 'Open Sans', Arial, sans-serif; color: #333;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: #68a4e0; outline: none; box-shadow: 0 0 3px rgba(104,164,224,0.3);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.required { color: #e02b20; }
.checkbox-label { display: flex; align-items: flex-start; gap: 8px; font-weight: 400 !important; font-size: 13px; line-height: 1.5; cursor: pointer; }
.checkbox-label input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; }
.btn-submit {
  padding: 12px 24px; background: #313131; color: #fff; border: none; border-radius: 3px;
  font-family: 'Open Sans', Arial, sans-serif; font-size: 16px; font-weight: 600;
  cursor: pointer; transition: background-color 0.2s;
}
.btn-submit:hover { background: #4a4a4a; }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-success { margin-top: 15px; padding: 12px 16px; background: #dff0d8; color: #3c763d; border: 1px solid #d6e9c6; border-radius: 3px; }
.form-error { margin-top: 15px; padding: 12px 16px; background: #f2dede; color: #a94442; border: 1px solid #ebccd1; border-radius: 3px; }

/* === Footer === */
footer { background: #313131; color: #878787; max-width: 1080px; margin: 0 auto; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; padding: 30px 30px; }
footer a { color: #878787; }
footer a:hover { color: #fff; }
footer p { font-size: 14px; }

/* === Privacy Policy === */
.page-content h2 ~ h2 { margin-top: 40px; margin-bottom: 10px; }
.page-content h3 { font-size: 20px; margin: 25px 0 10px; }
.page-content h4 { font-size: 17px; margin: 20px 0 8px; }
.page-content ul { margin-left: 20px; margin-bottom: 15px; }
.page-content li { margin-bottom: 5px; }

/* === Mobile === */
@media (max-width: 980px) {
  body { padding: 0 20px; }
  .logo img { max-width: none; height: 56px; }
  header.scrolled .logo img { height: 36px; }
  .menu-toggle { display: block; }
  nav { display: none; flex-direction: column; position: absolute; top: 66px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid #e5e5e5; padding: 15px 30px; gap: 12px; z-index: 99; }
  nav.open { display: flex; }
  .slide-inner { flex-direction: column; }
  .slide-image { flex: none; }
  .slide-image img { height: auto; }
  .slide-text { text-align: center; padding: 25px 20px; }
  .slide-text .btn-slide { align-self: center; }
  .card-row { flex-direction: column; }
  .content-with-image .content-image { float: none; margin: 0 0 15px 0; text-align: center; }
  .content-with-image .content-image img { max-width: 250px; margin: 0 auto; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 480px) {
  .slide-text h2 { font-size: 22px; }
  .page-content h2 { font-size: 22px; }
}
