/* ===== BASE STYLES ===== */
:root {
  font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-weight: 400;
  color: #213547;
  background-color: #ffffff;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

a {
  font-weight: 500;
  color: #646cff;
  text-decoration: inherit;
}
a:hover {
  color: #535bf2;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
}

html, body {
  height: 100%;
  margin: 0;
}

h1 {
  font-size: 3.2em;
  line-height: 1.1;
}

.App {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

/* ===== HEADER STYLES ===== */

.header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  position: relative;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo a {
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  color: #007bff;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  position: relative;
  padding: 5px 0;
  transition: all 0.3s ease;
}

.nav a:hover {
  color: #007bff;
}

.nav a.active::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #007bff;
  border-radius: 2px;
}

.cta-btn {
  background-color: #007bff;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background-color: #0056b3;
  color: #fff;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #007bff;
}

@media (max-width: 992px) {
  .nav {
    flex-direction: column;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fff;
    margin-top: 10px;
    border-top: 1px solid #eee;
    gap: 0;
  }

  .nav.open {
    max-height: 500px;
  }

  .nav a {
    padding: 12px 0;
    width: 100%;
    text-align: center;
  }

  .nav.open .cta-btn {
    display: block;
    margin: 10px auto;
  }

  .menu-toggle {
    display: block;
  }

  .header-container > .cta-btn {
    display: none;
  }
}

/* ===== FOOTER STYLES ===== */

.footer {
  background-color: #003366;
  color: white;
  padding: 20px 0;
  text-align: center;
}

/* ===== HOME PAGE STYLES ===== */

.hero {
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  position: relative;
}

.hero-image-bg {
  min-height: 350px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-image-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 1;
}
.hero-image-bg .hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
}

.hero-content {
  z-index: 10;
  max-width: 600px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin: 0 0 20px 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.3rem;
  margin: 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.about-intro {
  padding: 60px 20px;
  text-align: center;
  background-color: #f9f9f9;
}

.about-intro h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin: 0 0 20px 0;
}

.about-intro p {
  font-size: 1.1rem;
  color: #666;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.services-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.services-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  color: #333;
  margin: 0 0 50px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 50px;
  height: 50px;
  background-color: #28a745;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 20px;
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 15px 0;
}

.service-card p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.why-choose-us {
  padding: 60px 20px;
  background-color: #f0f5fa;
  text-align: center;
}

.why-choose-us h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin: 0 0 50px 0;
}

.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 1.1rem;
  color: #333;
  font-weight: 500;
}

.check-icon {
  width: 40px;
  height: 40px;
  background-color: #28a745;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #003d7a 0%, #0066cc 100%);
  color: white;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 40px 0;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-call {
  background-color: #0099ff;
  color: white;
}

.btn-call:hover {
  background-color: #0077cc;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 153, 255, 0.3);
  color: white;
}

.btn-whatsapp {
  background-color: #28a745;
  color: white;
}

.btn-whatsapp:hover {
  background-color: #218838;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
  color: white;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .about-intro h2 {
    font-size: 1.8rem;
  }

  .services-section h2 {
    font-size: 1.8rem;
  }

  .why-choose-us h2 {
    font-size: 1.8rem;
  }

  .cta-section h2 {
    font-size: 1.8rem;
  }

  .feature-item {
    justify-content: flex-start;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* ===== ABOUT PAGE STYLES ===== */

.about-hero {
  width: 100%;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.about-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}

.about-hero-content {
  z-index: 10;
  max-width: 800px;
  position: relative;
}

.about-hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin: 0 0 20px 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-hero p {
  font-size: 1.2rem;
  margin: 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.who-we-are {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.who-we-are h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #333;
  margin: 0 0 30px 0;
  text-align: center;
}

.who-we-are p {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
  margin: 0 0 20px 0;
  text-align: justify;
}

.who-we-are strong {
  color: #333;
}

.stats-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}

.stat-card {
  background: white;
  padding: 40px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.stat-card h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #003d7a;
  margin: 0 0 10px 0;
}

.stat-card p {
  font-size: 0.85rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  font-weight: 600;
}

.mission-vision {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
  width: 100%;
}

.mission-card,
.vision-card {
  background-color: #f5f5f5;
  padding: 40px;
  border-radius: 8px;
  border-left: 5px solid #003d7a;
}

.mission-card h3,
.vision-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin: 0 0 20px 0;
}

.mission-card p,
.vision-card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

.core-values {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.core-values h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin: 0 0 50px 0;
}

.values-list {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.value-item {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.value-item h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  margin: 0 0 15px 0;
}

.value-item p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.why-choose-us-about {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  background-color: #fff;
}

.why-choose-us-about h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #333;
  margin: 0 0 30px 0;
}

.why-choose-us-about p {
  font-size: 1.05rem;
  color: #666;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 1.8rem;
  }

  .about-hero p {
    font-size: 1rem;
  }

  .who-we-are h2 {
    font-size: 1.8rem;
  }

  .who-we-are p {
    text-align: left;
  }

  .stat-card h3 {
    font-size: 1.8rem;
  }

  .mission-card,
  .vision-card {
    border-left: 5px solid #003d7a;
  }

  .core-values h2 {
    font-size: 1.8rem;
  }

  .value-item h4 {
    font-size: 1.1rem;
  }

  .why-choose-us-about h2 {
    font-size: 1.8rem;
  }

  .why-choose-us-about p {
    font-size: 0.95rem;
  }
}

/* ===== SERVICES PAGE STYLES ===== */

.services-header {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(135deg, #f0f5fa 0%, #fff 100%);
  border-bottom: 2px solid #e0e0e0;
}

.services-header h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #007bff;
  margin: 0;
}

.services-list {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.service-item {
  display: flex;
  gap: 25px;
  padding: 30px;
  margin-bottom: 25px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.service-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.service-item .service-icon {
  font-size: 2.5rem;
  min-width: 60px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-content {
  flex: 1;
}

.service-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 12px 0;
}

.service-content p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
  margin: 0 0 10px 0;
}

.service-content p:last-child {
  margin-bottom: 0;
}

.service-content em {
  color: #888;
  font-size: 0.9rem;
}

.why-choose-services {
  padding: 60px 20px;
  background-color: #f9f9f9;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.why-choose-services h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  margin: 0 0 40px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.benefit-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  background: white;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.benefit-icon {
  width: 28px;
  height: 28px;
  background-color: #28a745;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 5px 0;
}

.benefit-item p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .services-header h1 {
    font-size: 2rem;
  }

  .service-item {
    flex-direction: column;
    gap: 15px;
  }

  .service-item .service-icon {
    margin: 0 auto;
  }

  .service-content h3 {
    font-size: 1.1rem;
  }

  .service-content p {
    font-size: 0.9rem;
  }

  .why-choose-services h2 {
    font-size: 1.5rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== GALLERY PAGE STYLES ===== */

.gallary-header {
  padding: 60px 20px 30px 20px;
  text-align: center;
}
.gallary-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #007bff;
  margin: 0 0 10px 0;
}
.gallary-header p {
  font-size: 1.1rem;
  color: #666;
  margin: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto 60px auto;
  padding: 0 20px;
}

.gallery-card {
  background: #f8faff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  transition: box-shadow 0.3s, transform 0.3s;
}
.gallery-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.13);
  transform: translateY(-4px) scale(1.02);
}
.gallery-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  background: #e9eef6;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-title {
  padding: 18px 12px 16px 12px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1976d2;
  text-align: center;
  background: #fff;
  border-top: 1px solid #e0e0e0;
}

@media (max-width: 600px) {
  .gallary-header h1 {
    font-size: 1.5rem;
  }
  .gallery-title {
    font-size: 1rem;
  }
  .gallery-grid {
    gap: 18px;
  }
}

/* ===== CONTACT PAGE STYLES ===== */

.contact-page-bg {
  background: #f7f9fa;
  min-height: 100vh;
  padding: 0;
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px 40px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.contact-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  padding: 36px 32px 32px 32px;
  flex: 1 1 350px;
  min-width: 320px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
  text-align: center;
  margin-bottom: 10px;
  padding-top: 40px;
}

.contact-subtitle {
  font-size: 1.1rem;
  color: #5a5a5a;
  text-align: center;
  margin-bottom: 40px;
}

.contact-info h3 {
  font-size: 1.3rem;
  color: #1976d2;
  font-weight: 700;
  margin: 0 0 10px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-info .contact-icon {
  font-size: 1.3rem;
}
.contact-info .contact-link {
  color: #e53935;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 10px;
  display: inline-block;
}
.contact-info .contact-link:hover {
  text-decoration: underline;
}
.contact-info .contact-map {
  width: 100%;
  height: 180px;
  border: none;
  border-radius: 8px;
  margin: 12px 0 0 0;
  box-shadow: 0 1px 6px rgba(0,0,0,0.07);
}
.contact-info .contact-label {
  font-weight: 600;
  color: #222;
  margin-top: 18px;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.contact-info .contact-value {
  color: #222;
  margin-bottom: 8px;
}
.contact-info .contact-email {
  color: #1976d2;
  font-weight: 500;
  word-break: break-all;
}

.contact-form h3 {
  font-size: 1.3rem;
  color: #222;
  font-weight: 700;
  margin: 0 0 18px 0;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #e0e0e0;
  border-radius: 6px;
  font-size: 1rem;
  margin-bottom: 18px;
  background: #f9f9f9;
  transition: border 0.2s;
  box-sizing: border-box;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #1976d2;
  outline: none;
}
.contact-form textarea {
  min-height: 90px;
  resize: vertical;
}
.contact-form .form-group {
  margin-bottom: 18px;
}
.contact-form .service-checkboxes {
  border: 1.5px dashed #b0b0b0;
  border-radius: 8px;
  padding: 16px 14px 10px 14px;
  margin-bottom: 18px;
  background: #fafbfc;
}
.contact-form .service-checkboxes label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  margin-bottom: 10px;
  cursor: pointer;
}
.contact-form .service-checkboxes input[type="checkbox"] {
  accent-color: #1976d2;
  width: 18px;
  height: 18px;
}
.contact-form .contact-submit {
  width: 100%;
  background: #28c445;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  padding: 14px 0;
  margin-top: 10px;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(40,196,69,0.08);
}
.contact-form .contact-submit:hover {
  background: #22a63a;
  box-shadow: 0 4px 16px rgba(40,196,69,0.13);
}

@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  .contact-card {
    max-width: 600px;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .contact-title {
    font-size: 1.4rem;
  }
  .contact-card {
    padding: 20px 8px 18px 8px;
  }
}

/* ===== FAQ PAGE STYLES ===== */

.faq-page-bg {
  background: #fafbfc;
  min-height: 100vh;
  padding: 0;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px 40px 20px;
}

.faq-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1976d2;
  text-align: center;
  margin-bottom: 36px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  overflow: hidden;
  transition: box-shadow 0.2s;
  border: 1.5px solid #f0f0f0;
}
.faq-item.open {
  box-shadow: 0 4px 16px rgba(25, 118, 210, 0.10);
  border-color: #1976d2;
}
.faq-question {
  font-size: 1.08rem;
  font-weight: 500;
  color: #222;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.2s;
}
.faq-question:hover {
  background: #f5faff;
}
.faq-toggle {
  font-size: 1.5rem;
  color: #1976d2;
  font-weight: bold;
  margin-left: 10px;
  transition: transform 0.2s;
}
.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}
.faq-answer {
  font-size: 1rem;
  color: #444;
  padding: 0 24px 18px 24px;
  background: #f9fafd;
  border-top: 1px solid #e0e0e0;
  animation: fadeInFaq 0.3s;
  display: none;
}
.faq-item.open .faq-answer {
  display: block;
}
@keyframes fadeInFaq {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
  .faq-title {
    font-size: 1.3rem;
  }
  .faq-question {
    font-size: 0.98rem;
    padding: 16px 12px;
  }
  .faq-answer {
    font-size: 0.95rem;
    padding: 0 12px 14px 12px;
  }
}
