body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8fafe;
}

/* Contact Hero Section */
.contact-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1rem;
  overflow: hidden;
  background-color: #f0f5fa;
}

/* Grid Background */
.grid-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(to right, rgba(200, 210, 220, 0.1) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(200, 210, 220, 0.1) 1px, transparent 1px),
    linear-gradient(to right, rgba(200, 210, 220, 0.2) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(200, 210, 220, 0.2) 1px, transparent 1px);
  background-size: 
    25px 25px,
    25px 25px,
    125px 125px,
    125px 125px;
  z-index: 0;
}

/* Floating Particles */
.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.8;
  filter: blur(8px);
  z-index: 1;
}

.particle-1 {
  width: 20px;
  height: 20px;
  background-color: #4dc4ff;
  top: 25%;
  left: 30%;
  animation: float 15s ease-in-out infinite;
}

.particle-2 {
  width: 25px;
  height: 25px;
  background-color: #a78bfa;
  top: 35%;
  right: 20%;
  animation: float 18s ease-in-out infinite 2s;
}

.particle-3 {
  width: 15px;
  height: 15px;
  background-color: #60a5fa;
  bottom: 30%;
  left: 40%;
  animation: float 12s ease-in-out infinite 1s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  25% {
    transform: translateY(-20px) translateX(10px);
  }
  50% {
    transform: translateY(0) translateX(20px);
  }
  75% {
    transform: translateY(20px) translateX(10px);
  }
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  color: #171923;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.contact-button {
  display: inline-block;
  padding: 0.75rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 9999px;
  background: linear-gradient(to right, #3b82f6, #8b5cf6);
  color: white;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.contact-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .contact-hero {
    min-height: 60vh;
  }
}


/* How to Reach Us Section - New Styles */
    .reach-us-section {
      position: relative;
      padding: 5rem 0;
      background-color: #f8fafe;
      overflow: hidden;
    }

    .reach-us-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1.5rem;
      position: relative;
      z-index: 2;
    }

    .section-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .gradient-line {
      display: block;
      width: 120px;
      height: 4px;
      background: linear-gradient(to right, #3b82f6, #8b5cf6);
      margin: 0 auto 1.5rem;
      border-radius: 2px;
    }

    .section-title {
      font-size: 2.5rem;
      font-weight: 700;
      color: #171923;
      margin-bottom: 1rem;
    }

    .section-subtitle {
      font-size: 1.1rem;
      color: #4a5568;
      max-width: 600px;
      margin: 0 auto;
    }

    .contact-cards {
      display: flex;
      gap: 2rem;
      margin-top: 3rem;
    }

    .contact-card {
      flex: 1;
      background-color: white;
      border-radius: 1rem;
      padding: 2.5rem;
      text-align: center;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .contact-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .contact-icon-wrapper {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
    }

    .email-icon-wrapper {
      background-color: rgba(75, 192, 255, 0.15);
    }

    .call-icon-wrapper {
      background-color: rgba(167, 139, 250, 0.15);
    }

    .contact-icon {
      width: 40px;
      height: 40px;
      object-fit: contain;
    }

    .contact-card-title {
      font-size: 1.5rem;
      font-weight: 700;
      color: #171923;
      margin-bottom: 1rem;
    }

    .contact-card-text {
      font-size: 1rem;
      color: #4a5568;
      margin-bottom: 1.5rem;
      line-height: 1.6;
    }

    .contact-email {
      font-size: 1.1rem;
      color: #3b82f6;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s ease;
    }

    .contact-email:hover {
      color: #2563eb;
    }

    .contact-phone {
      font-size: 1.1rem;
      color: #8b5cf6;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s ease;
    }

    .contact-phone:hover {
      color: #7c3aed;
    }

    /* Decorative elements */
    .reach-us-particle {
      position: absolute;
      border-radius: 50%;
      opacity: 0.6;
      filter: blur(5px);
      z-index: 1;
    }

    .reach-us-particle-1 {
      width: 15px;
      height: 15px;
      background-color: #4dc4ff;
      top: 15%;
      left: 45%;
      animation: float 12s ease-in-out infinite;
    }

    .reach-us-particle-2 {
      width: 10px;
      height: 10px;
      background-color: #a78bfa;
      bottom: 20%;
      right: 20%;
      animation: float 15s ease-in-out infinite 1s;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .contact-cards {
        flex-direction: column;
        gap: 1.5rem;
      }
      
      .contact-card {
        padding: 2rem;
      }
    }

    @media (max-width: 768px) {
      .section-title {
        font-size: 2rem;
      }
      
      .section-subtitle {
        font-size: 1rem;
      }
      
      .contact-icon-wrapper {
        width: 80px;
        height: 80px;
      }
      
      .contact-icon {
        width: 32px;
        height: 32px;
      }
    }

    /* FAQ Section - New Styles */
    .faq-section {
      padding: 5rem 0;
      background-color: #f0f5fa;
      position: relative;
    }

    .faq-container {
      max-width: 1000px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    .faq-header {
      text-align: center;
      margin-bottom: 3.5rem;
    }

    .faq-title {
      font-size: 2.5rem;
      font-weight: 700;
      color: #171923;
      margin-bottom: 1rem;
    }

    .faq-subtitle {
      font-size: 1.1rem;
      color: #4a5568;
      max-width: 700px;
      margin: 0 auto;
    }

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .faq-item {
      background-color: white;
      border-radius: 1rem;
      padding: 1.5rem;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
      display: flex;
      align-items: flex-start;
      gap: 1.25rem;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .faq-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }

    .faq-icon {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .faq-icon-mail {
      background-color: rgba(75, 192, 255, 0.15);
    }

    .faq-icon-chat {
      background-color: rgba(167, 139, 250, 0.15);
    }

    .faq-icon-phone {
      background-color: rgba(75, 192, 255, 0.15);
    }

    .faq-icon svg {
      width: 24px;
      height: 24px;
    }

    .faq-content {
      flex: 1;
    }

    .faq-question {
      font-size: 1.25rem;
      font-weight: 600;
      color: #171923;
      margin-bottom: 0.75rem;
    }

    .faq-answer {
      font-size: 1rem;
      color: #4a5568;
      line-height: 1.6;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .faq-title {
        font-size: 1rem;
      }
      
      .faq-subtitle {
        font-size: 1rem;
      }
      
      .faq-item {
        padding: 1.25rem;
        gap: 0rem;
      }
      
      .faq-question {
        font-size: 0.8rem;
      }

      .faq-answer {
        font-size: 0.6rem;
    }
      
      .faq-icon {
        width: 40px;
        height: 40px;
      }
      
      .faq-icon svg {
        width: 20px;
        height: 20px;
      }

      .contact-email {
        font-size: 0.5rem;
    }
    }