

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: #ffffff;
      overflow-x: hidden;
    }

    /* ========== IMPLANTS SERVICE PAGE - COMPREHENSIVE DESIGN ========== */
    .implants-page {
      max-width: 1400px;
      margin: 0 auto;
    }

    /* HERO SECTION */
    .implants-hero {
      background: linear-gradient(135deg, #0a2f35 0%, #144d55 50%, #1a6b6b 100%);
      padding: 80px 40px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .implants-hero::before {
      content: 'ðŸ¦·';
      position: absolute;
      bottom: -30px;
      right: -30px;
      font-size: 200px;
      opacity: 0.05;
      pointer-events: none;
    }

    .implants-hero::after {
      content: 'âœ¨';
      position: absolute;
      top: 20px;
      left: 20px;
      font-size: 100px;
      opacity: 0.05;
      pointer-events: none;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(10px);
      padding: 8px 24px;
      border-radius: 60px;
      margin-bottom: 25px;
    }

    .hero-badge i {
      color: #ffd700;
    }

    .hero-badge span {
      color: white;
      font-size: 0.8rem;
      font-weight: 500;
    }

    .implants-hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: 3.5rem;
      font-weight: 700;
      color: white;
      margin-bottom: 20px;
      letter-spacing: -0.02em;
    }

    .implants-hero h1 span {
      color: #ffd700;
    }

    .implants-hero p {
      color: rgba(255, 255, 255, 0.85);
      max-width: 650px;
      margin: 0 auto;
      font-size: 1.1rem;
      line-height: 1.6;
    }

    /* BREADCRUMB / LOCATION BAR */
    .location-bar {
      background: #fef5ef;
      padding: 15px 40px;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 15px;
    }

    .location-breadcrumb {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.85rem;
      color: #6b8a8f;
    }

    .location-breadcrumb a {
      color: #0b7285;
      text-decoration: none;
    }

    .location-breadcrumb i {
      font-size: 0.7rem;
    }

    .location-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .location-tag {
      background: white;
      padding: 5px 15px;
      border-radius: 30px;
      font-size: 0.7rem;
      font-weight: 600;
      color: #0b7285;
      box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    }

    /* MAIN CONTENT */
    .implants-content {
      padding: 60px 40px;
    }

    .content-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 50px;
      margin-bottom: 60px;
    }

    .content-text {
      flex: 1.2;
    }

    .content-text h2 {
      font-family: 'Playfair Display', serif;
      font-size: 2.2rem;
      color: #1a3c3f;
      margin-bottom: 20px;
    }

    .content-text h2 span {
      color: #b76e4a;
    }

    .content-text p {
      color: #4a5e63;
      line-height: 1.7;
      margin-bottom: 20px;
    }

    .highlight-box {
      background: linear-gradient(135deg, #eef7f5, #e2f0ec);
      padding: 25px;
      border-radius: 24px;
      margin: 25px 0;
      border-left: 4px solid #0b7285;
    }

    .highlight-box i {
      color: #0b7285;
      font-size: 1.5rem;
      margin-bottom: 10px;
    }

    .content-image {
      flex: 1;
      border-radius: 32px;
      overflow: hidden;
      box-shadow: 0 25px 40px -15px rgba(0, 0, 0, 0.15);
    }

    .content-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s;
    }

    .content-image:hover img {
      transform: scale(1.02);
    }

    /* FEATURES SECTION */
   .features-grid {
    display: flex;
    justify-content: flex-start; /* Left align */
    align-items: flex-start;
}

.features-grid ul {
    width: 100%;
    max-width: 700px;
    margin: 0;
    padding-left: 25px;
    text-align: left;
}

.features-grid li {
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.7;
}

.features-grid p {
    width: 100%;
    
    margin-top: 20px;
    text-align: left;
    color: #555;
    line-height: 1.8;
}



    /* PROCESS SECTION */
    .process-section {
      background: linear-gradient(145deg, #fefdfb 0%, #f9f6f2 100%);
      padding: 60px 40px;
      border-radius: 40px;
      margin: 60px 0;
    }

    .process-steps {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 40px;
    }

    .step {
      text-align: center;
      width: 200px;
    }

    .step-number {
      width: 60px;
      height: 60px;
      background: #0b7285;
      color: white;
      font-size: 1.5rem;
      font-weight: 700;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 15px;
    }

    .step h4 {
      font-size: 1rem;
      color: #1a3c3f;
      margin-bottom: 8px;
    }

    .step p {
      font-size: 0.8rem;
      color: #6b8a8f;
    }

    /* CTA SECTION */
    .cta-section {
      background: linear-gradient(135deg, #0b7285, #0d5e6e);
      border-radius: 32px;
      padding: 50px;
      text-align: center;
      margin-top: 40px;
    }

    .cta-section h3 {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      color: white;
      margin-bottom: 15px;
    }

    .cta-section p {
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 25px;
    }

    .cta-button {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: #ffd700;
      color: #1a3c3f;
      padding: 14px 36px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 1rem;
      text-decoration: none;
      transition: all 0.3s;
    }

    .cta-button:hover {
      transform: translateY(-3px);
      gap: 18px;
      background: #ffc107;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .implants-hero {
        padding: 50px 20px;
      }
      .implants-hero h1 {
        font-size: 2.2rem;
      }
      .implants-content {
        padding: 40px 20px;
      }
      .content-grid {
        flex-direction: column;
      }
      .process-section {
        padding: 40px 20px;
      }
      .cta-section {
        padding: 35px 20px;
      }
      .cta-section h3 {
        font-size: 1.5rem;
      }
    }

    @media (max-width: 550px) {
      .implants-hero h1 {
        font-size: 1.8rem;
      }
      .section-title h3 {
        font-size: 1.6rem;
      }
      .feature-card {
        width: 100%;
      }
      .step {
        width: 100%;
      }
    }
    
    
    .section-title h2{
    
      font-family: 'Playfair Display', serif;
      font-size: 2.2rem;
      color:  #b76e4a;
      margin-bottom: 20px;
    
    
    }
    
   .faq-section {
    padding:  30px 0;
}

.faq-section .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.faq-section .section-title h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #1a3c3f;
}

.accordion-item {
    border: 1px solid #e5e5e5;
    border-radius: 12px !important;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    color: #1a3c3f;
    background: #fff;
    padding: 18px 20px;
}

.accordion-button:not(.collapsed) {
    background: #0b7285;
    color: #fff;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    line-height: 1.8;
    color: #555;
} 
    
    
    
