   /* SEO TOP CONTENT - CENTERED TEXT */
.seo-top-content {
  background: linear-gradient(135deg, #f0f3ff 0%, #ffffff 100%);
  padding: 40px 0;
  /*border-bottom: 3px solid var(--accent, #7AC943);*/
  text-align: center;
}

.seo-container {
  max-width: 1300px;
  width: 90%;
  margin: 0 auto;
}

.seo-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary, #5A3E98);
  margin-bottom: 15px;
  line-height: 1.3;
  text-align: center;
}

.seo-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
  margin: 0 auto;
  max-width: 1000px;
  text-align: center;
}

.seo-description strong {
  color: var(--primary-dark, #4a2f7a);
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .seo-title {
    font-size: 1.8rem;
  }
  
  .seo-description {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .seo-title {
    font-size: 1.5rem;
  }
}

/* SIGNS & SYMPTOMS SECTION - IMAGE RIGHT */
.signs-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.signs-shape-1 {
  position: absolute;
  width: 150px;
  height: 150px;
  background: var(--accent, #7AC943);
  opacity: 0.1;
  border-radius: 50%;
  top: -30px;
  left: -30px;
  z-index: 1;
  animation: float 6s infinite ease-in-out;
}

.signs-shape-2 {
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--primary, #5A3E98);
  opacity: 0.1;
  border-radius: 50%;
  bottom: -50px;
  right: -50px;
  z-index: 1;
  animation: float 8s infinite ease-in-out reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -20px); }
}

.signs-container {
  max-width: 1300px;
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;  /* Content column larger, image column smaller */
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* LEFT SIDE - CONTENT */
.signs-content-wrapper {
  animation: fadeInLeft 1s ease;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.signs-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark, #1e1b2e);
  margin-bottom: 20px;
}

.signs-title-highlight {
  color: var(--primary, #5A3E98);
  position: relative;
  display: inline-block;
}

.signs-title-highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--accent, #7AC943);
  opacity: 0.3;
  border-radius: 4px;
  z-index: -1;
}

.signs-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4a4a4a;
  margin-bottom: 25px;
}

.signs-footer {
  margin-top: 25px;
  margin-bottom: 0;
  font-weight: 500;
  color: var(--primary-dark, #4a2f7a);
}

/* Symptoms List */
.signs-list {
  margin: 30px 0;
}

.signs-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
  padding: 10px 15px;
  background: rgba(122, 201, 67, 0.05);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.signs-item:hover {
  background: rgba(90, 62, 152, 0.05);
  transform: translateX(5px);
}

.signs-bullet {
  color: var(--accent, #7AC943);
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
}

.signs-text {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.4;
  flex: 1;
}

/* RIGHT SIDE - IMAGE */
.signs-image-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(90, 62, 152, 0.3);
  animation: fadeInRight 1s ease;
  max-width: 450px;
  justify-self: start;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.signs-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.signs-image-wrapper:hover .signs-image {
  transform: scale(1.05);
}

/* Image overlay */
.signs-image-wrapper::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  z-index: 2;
  pointer-events: none;
  transition: all 0.3s ease;
}

.signs-image-wrapper:hover::before {
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border-color: var(--accent, #7AC943);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .signs-title {
    font-size: 2.3rem;
  }
  
  .signs-container {
    gap: 40px;
  }
  
  .signs-image-wrapper {
    max-width: 380px;
  }
}

@media (max-width: 768px) {
  .signs-section {
    padding: 60px 0;
  }
  
  .signs-container {
    grid-template-columns: 1fr;
    gap: 40px;
    display: flex;
    flex-direction: column;
  }
  
  /* Content comes first */
  .signs-content-wrapper {
    order: 1;
  }
  
  /* Image comes after content */
  .signs-image-wrapper {
    order: 2;
    max-width: 100%;
    justify-self: center;
  }
  
  .signs-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .signs-description {
    text-align: center;
  }
  
  .signs-list {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .signs-title {
    font-size: 1.8rem;
  }
  
  .signs-description {
    font-size: 1rem;
  }
  
  .signs-text {
    font-size: 1rem;
  }
  
  .signs-item {
    padding: 8px 12px;
  }
}

/* ROOT CANAL TREATMENT SECTION - IMAGE LEFT, CONTENT RIGHT */
.rct-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.rct-container {
  max-width: 1300px;
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;  /* Adjusted ratio to make image smaller */
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* LEFT SIDE - IMAGE - REDUCED SIZE */
.rct-image-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(90, 62, 152, 0.3);
  animation: fadeInLeft 1s ease;
  max-width: 450px;  /* Limit maximum width */
  justify-self: end;  /* Align to the right within its column */
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.rct-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.rct-image-wrapper:hover .rct-image {
  transform: scale(1.05);
}

/* Image overlay with floating shape */
.rct-image-wrapper::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  z-index: 2;
  pointer-events: none;
  transition: all 0.3s ease;
}

.rct-image-wrapper:hover::before {
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border-color: var(--accent, #7AC943);
}

/* Decorative elements */
.rct-shape-1 {
  position: absolute;
  width: 150px;
  height: 150px;
  background: var(--primary-light, #7C5BB0);
  opacity: 0.1;
  border-radius: 50%;
  top: -30px;
  left: -30px;
  z-index: 1;
  animation: float 6s infinite ease-in-out;
}

.rct-shape-2 {
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--accent-light, #9fdf6f);
  opacity: 0.1;
  border-radius: 50%;
  bottom: -50px;
  right: -50px;
  z-index: 1;
  animation: float 8s infinite ease-in-out reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -20px); }
}

/* RIGHT SIDE - CONTENT */
.rct-content-wrapper {
  animation: fadeInRight 1s ease;
  position: relative;
  z-index: 3;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.rct-badge {
  display: inline-block;
  background: var(--primary, #5A3E98);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
  box-shadow: 0 5px 15px rgba(90, 62, 152, 0.3);
}

.rct-title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark, #1e1b2e);
  margin-bottom: 20px;
  position: relative;
}

.rct-title-highlight {
  color: var(--primary, #5A3E98);
  position: relative;
  display: inline-block;
}

.rct-title-highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--accent, #7AC943);
  opacity: 0.3;
  border-radius: 4px;
  z-index: -1;
}

.rct-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4a4a4a;
  margin-bottom: 30px;
}

.rct-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 35px;
}

.rct-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rct-feature-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-light, #9fdf6f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark, #4a2f7a);
  font-size: 1.2rem;
  font-weight: bold;
}

.rct-feature-text {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark, #1e1b2e);
}

.rct-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 35px;
  padding: 20px 0;
  border-top: 2px dashed rgba(90, 62, 152, 0.2);
  border-bottom: 2px dashed rgba(90, 62, 152, 0.2);
}

.rct-stat-item {
  text-align: center;
}

.rct-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary, #5A3E98);
  line-height: 1;
  margin-bottom: 5px;
}

.rct-stat-label {
  font-size: 0.9rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.rct-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.rct-btn {
  padding: 14px 35px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-decoration: none;
  display: inline-block;
}

.rct-btn-primary {
  background: var(--primary, #5A3E98);
  color: white;
  box-shadow: 0 10px 25px rgba(90, 62, 152, 0.3);
}

.rct-btn-primary:hover {
  background: var(--primary-light, #7C5BB0);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(90, 62, 152, 0.4);
}

.rct-btn-outline {
  background: transparent;
  border-color: var(--primary, #5A3E98);
  color: var(--primary, #5A3E98);
}

.rct-btn-outline:hover {
  background: var(--primary, #5A3E98);
  color: white;
  transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .rct-title {
    font-size: 2.5rem;
  }
  
  .rct-features {
    gap: 15px;
  }
  
  .rct-image-wrapper {
    max-width: 400px;  /* Slightly smaller on medium screens */
  }
}

@media (max-width: 768px) {
  .rct-section {
    padding: 60px 0;
  }
  
  .rct-container {
    grid-template-columns: 1fr;
    gap: 40px;
    display: flex;
    flex-direction: column;
  }
  
  /* Text content comes first */
  .rct-content-wrapper {
    order: 1;
    margin-bottom: 20px;
    max-width: 100%;
  }
  
  /* Image comes after text - full width on mobile */
  .rct-image-wrapper {
    order: 2;
    margin-top: 20px;
    max-width: 100%;  /* Full width on mobile */
    justify-self: center;
  }
  
  .rct-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
  }
  
  .rct-title {
    font-size: 2.2rem;
    text-align: center;
  }
  
  .rct-description {
    text-align: center;
  }
  
  .rct-features {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .rct-stats {
    justify-content: center;
  }
  
  .rct-buttons {
    justify-content: center;
  }
  
  .rct-badge {
    display: table;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .rct-title {
    font-size: 1.8rem;
  }
  
  .rct-description {
    font-size: 1rem;
  }
  
  .rct-stats {
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .rct-stat-number {
    font-size: 1.5rem;
  }
  
  .rct-buttons {
    flex-direction: column;
  }
  
  .rct-btn {
    width: 100%;
    text-align: center;
  }
}/* Update these specific classes in your CSS */

.rct-container {
  max-width: 1300px;
  width: 90%;
  margin: 0 auto;
  display: grid;
  /* Reduced the first column (image) and increased the second (content) */
  grid-template-columns: 0.8fr 1.2fr; 
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.rct-image-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(90, 62, 152, 0.3);
  animation: fadeInLeft 1s ease;
  
  /* NEW: Reduce size on desktop */
  max-width: 450px; 
  justify-self: center; /* Centers the smaller image within its grid cell */
}

/* Ensure the image doesn't look squashed */
.rct-image {
  width: 100%;
  height: 450px; /* Optional: Force a square or specific height */
  object-fit: cover; /* Keeps aspect ratio clean */
  display: block;
  transition: transform 0.5s ease;
}
 
 
 
 
 
    /* PROCEDURE SECTION - PROFESSIONAL */
    .procedure-section {
      padding: 80px 0;
      background: linear-gradient(135deg, #f5f7ff 0%, #ffffff 100%);
      position: relative;
      overflow: hidden;
    }

    .procedure-shape-1 {
      position: absolute;
      width: 400px;
      height: 400px;
      background: var(--accent, #7AC943);
      opacity: 0.03;
      border-radius: 50%;
      top: -100px;
      right: -100px;
      z-index: 0;
    }

    .procedure-shape-2 {
      position: absolute;
      width: 500px;
      height: 500px;
      background: var(--primary, #5A3E98);
      opacity: 0.03;
      border-radius: 50%;
      bottom: -150px;
      left: -150px;
      z-index: 0;
    }

    .procedure-container {
      max-width: 1000px;
      width: 90%;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    /* Header */
    .procedure-header {
      text-align: center;
      margin-bottom: 50px;
    }

    .procedure-badge {
      display: inline-block;
      background: var(--accent, #7AC943);
      color: var(--text-dark, #1e1b2e);
      padding: 8px 25px;
      border-radius: 50px;
      font-size: 0.9rem;
      font-weight: 600;
      letter-spacing: 2px;
      margin-bottom: 20px;
      text-transform: uppercase;
    }

    .procedure-title {
      font-size: 2.8rem;
      font-weight: 800;
      color: var(--text-dark, #1e1b2e);
      margin-bottom: 15px;
    }

    .procedure-title span {
      color: var(--primary, #5A3E98);
      position: relative;
    }

    .procedure-title span::after {
      content: '';
      position: absolute;
      bottom: 5px;
      left: 0;
      width: 100%;
      height: 8px;
      background: var(--accent, #7AC943);
      opacity: 0.3;
      border-radius: 4px;
      z-index: -1;
    }

    .procedure-subtitle {
      font-size: 1.2rem;
      color: #555;
      max-width: 700px;
      margin: 0 auto;
    }

    /* Procedure Card */
    .procedure-card {
      background: white;
      border-radius: 40px;
      padding: 50px;
      box-shadow: 0 30px 60px -20px rgba(90, 62, 152, 0.2);
      margin-top: 30px;
      border: 1px solid rgba(122, 201, 67, 0.1);
    }

    .procedure-intro {
      font-size: 1.2rem;
      color: var(--primary-dark, #4a2f7a);
      font-weight: 500;
      margin-bottom: 40px;
      padding-bottom: 20px;
      border-bottom: 2px dashed rgba(122, 201, 67, 0.3);
      text-align: center;
    }

    /* Timeline */
    .procedure-timeline {
      position: relative;
      margin: 40px 0;
    }

    .timeline-step {
      display: flex;
      gap: 30px;
      margin-bottom: 35px;
      position: relative;
    }

    .timeline-step:last-child {
      margin-bottom: 0;
    }

    .step-left {
      width: 60px;
      text-align: center;
    }

    .step-number {
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, var(--primary, #5A3E98), var(--primary-light, #7C5BB0));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 700;
      font-size: 1.3rem;
      margin: 0 auto;
      box-shadow: 0 10px 20px rgba(90, 62, 152, 0.2);
    }

    .step-content {
      flex: 1;
      background: #f8f9ff;
      padding: 25px 30px;
      border-radius: 20px;
      position: relative;
    }

    .step-content::before {
      content: '';
      position: absolute;
      left: -10px;
      top: 20px;
      width: 0;
      height: 0;
      border-top: 10px solid transparent;
      border-bottom: 10px solid transparent;
      border-right: 10px solid #f8f9ff;
    }

    .step-content h4 {
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--primary-dark, #4a2f7a);
      margin-bottom: 8px;
    }

    .step-content p {
      font-size: 1rem;
      color: #555;
      line-height: 1.6;
      margin: 0;
    }

    /* Safety Note */
    .procedure-safety {
      margin-top: 50px;
      padding: 30px 35px;
      background: linear-gradient(135deg, rgba(122, 201, 67, 0.05), rgba(90, 62, 152, 0.05));
      border-radius: 30px;
      display: flex;
      align-items: center;
      gap: 20px;
      border: 1px solid rgba(122, 201, 67, 0.2);
    }

    .safety-icon {
      font-size: 3rem;
    }

    .safety-text {
      font-size: 1.1rem;
      color: #444;
      line-height: 1.6;
      margin: 0;
    }

    .safety-text strong {
      color: var(--primary, #5A3E98);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .procedure-title {
        font-size: 2.2rem;
      }
      
      .procedure-card {
        padding: 30px 20px;
      }
      
      .timeline-step {
        flex-direction: column;
        gap: 15px;
      }
      
      .step-left {
        width: 100%;
      }
      
      .step-content::before {
        display: none;
      }
      
      .procedure-safety {
        flex-direction: column;
        text-align: center;
        padding: 25px;
      }
    }
    


        /* Step number beside content */
.timeline-step {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.step-number {
  width: 35px;
  height: 35px;
  background: var(--primary, #5A3E98);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.step-content {
  flex: 1;
}

.step-content h4 {
  margin: 0 0 5px 0;
  font-size: 1.2rem;
  color: var(--primary-dark, #4a2f7a);
}

.step-content p {
  margin: 0;
  color: #555;
  line-height: 1.5;
}/* Updated timeline step - number beside content */
.timeline-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.step-left {
  flex-shrink: 0;
}

.step-number {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--primary, #5A3E98), var(--primary-light, #7C5BB0));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.3rem;
  box-shadow: 0 10px 20px rgba(90, 62, 152, 0.2);
}

.step-content {
  flex: 1;
  background: #f8f9ff;
  padding: 20px 25px;
  border-radius: 15px;
}

.step-content h4 {
  margin: 0 0 8px 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-dark, #4a2f7a);
}

.step-content p {
  margin: 0;
  color: #555;
  line-height: 1.6;
}
    
    
     
        @import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;700;800&display=swap');

        :root {
            --primary-deep: #4a2f7a;
            --primary-main: #5A3E98;
            --accent-green: #7AC943;
            --glass-bg: rgba(255, 255, 255, 0.9);
            --text-dark: #1A1A1A;
        }

        .premium-root-canal {
            font-family: 'Plus Jakarta Sans', sans-serif;
            padding: 100px 0;
            background: #ffffff;
            background-image: radial-gradient(#5a3e9808 1px, transparent 1px);
            background-size: 30px 30px;
            position: relative;
            color: var(--text-dark);
        }

        .premium-container {
            max-width: 1200px;
            width: 92%;
            margin: 0 auto;
        }

        /* Section Title Design */
        .section-intro {
            text-align: center;
            margin-bottom: 70px;
        }

        .badge-elite {
            background: #f0ebfa;
            color: var(--primary-main);
            padding: 6px 20px;
            border-radius: 100px;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 1px;
            display: inline-block;
            margin-bottom: 15px;
            border: 1px solid #5a3e9820;
        }

        .main-heading {
            font-size: clamp(2rem, 5vw, 3.2rem);
            font-weight: 800;
            color: var(--primary-deep);
            margin: 0;
        }

        .main-heading span {
            color: var(--accent-green);
        }

        /* Card Layout */
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: stretch;
        }

        .elite-card {
            background: #ffffff;
            border-radius: 32px;
            padding: 50px;
            border: 1px solid #f0f0f0;
            box-shadow: 0 20px 50px rgba(0,0,0,0.03);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
        }

        .elite-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 30px 70px rgba(90, 62, 152, 0.12);
            border-color: #5a3e9820;
        }

        .card-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 35px;
        }

        .icon-box {
            width: 60px;
            height: 60px;
            background: var(--primary-main);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: white;
            box-shadow: 0 10px 20px rgba(90, 62, 152, 0.3);
        }

        .card-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-deep);
            margin: 0;
        }

        /* Benefits List */
        .feature-item {
            display: flex;
            gap: 18px;
            margin-bottom: 28px;
        }

        .check-circle {
            width: 24px;
            height: 24px;
            background: #eef9e6;
            color: var(--accent-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            flex-shrink: 0;
            margin-top: 4px;
        }

        .feature-text h4 {
            font-size: 1.15rem;
            margin-bottom: 6px;
            color: var(--primary-deep);
        }

        .feature-text p {
            font-size: 0.95rem;
            color: #666;
            line-height: 1.6;
            margin: 0;
        }

        /* Procedure Timeline */
        .elite-timeline {
            position: relative;
            padding-left: 20px;
        }

        .elite-step {
            position: relative;
            padding-left: 45px;
            padding-bottom: 35px;
        }

        .elite-step:last-child { padding-bottom: 0; }

        .elite-step::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 32px;
            height: 32px;
            background: white;
            border: 2px solid var(--primary-main);
            border-radius: 50%;
            z-index: 2;
        }

        .elite-step::after {
            content: attr(data-step);
            position: absolute;
            left: 11px;
            top: 6px;
            font-size: 0.8rem;
            font-weight: 800;
            color: var(--primary-main);
            z-index: 3;
        }

        .elite-step-line {
            position: absolute;
            left: 15px;
            top: 32px;
            bottom: 0;
            width: 2px;
            background: #5a3e9815;
            z-index: 1;
        }

        .step-info h4 {
            font-size: 1.15rem;
            margin-bottom: 4px;
            color: var(--primary-deep);
        }

        .step-info p {
            font-size: 0.95rem;
            color: #666;
            margin: 0;
        }

        /* Floating CTA Wrapper */
        .premium-cta-box {
            margin-top: 60px;
            background: var(--primary-deep);
            border-radius: 40px;
            padding: 50px;
            text-align: center;
            color: white;
            background: linear-gradient(135deg, #4a2f7a 0%, #2c1d4a 100%);
            box-shadow: 0 30px 60px rgba(0,0,0,0.2);
            position: relative;
            overflow: hidden;
        }

        .premium-cta-box::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
        }

        .cta-btn {
            padding: 18px 45px;
            border-radius: 100px;
            font-weight: 700;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            font-size: 1.05rem;
            margin: 10px;
            position: relative;
            z-index: 2;
        }

        .btn-white {
            background: white;
            color: var(--primary-deep);
        }

        .btn-white:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }

        .btn-wa {
            background: #25D366;
            color: white;
        }

        /* Mobile Responsive */
        @media (max-width: 968px) {
            .content-grid { grid-template-columns: 1fr; }
            .premium-root-canal { padding: 60px 0; }
            .elite-card { padding: 35px 25px; }
        }
    


        :root {
            --primary-color: #2c3e50;
            --accent-color: #3498db;
            --bg-color: #f9f9f9;
        }

        .faq-container {
            max-width: 800px;
            margin: 40px auto;
            padding: 20px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--bg-color);
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }

        .faq-header {
            text-align: center;
            color: var(--primary-color);
            margin-bottom: 30px;
        }

        .faq-intro {
            text-align: center;
            color: #666;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        /* Accordion Style */
        .faq-item {
            background: #fff;
            margin-bottom: 15px;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid #eee;
            transition: transform 0.2s ease;
        }

        .faq-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        /* Checkbox Hack for Animation */
        .faq-input {
            display: none;
        }

        .faq-label {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            font-weight: 600;
            color: var(--primary-color);
            cursor: pointer;
            transition: background 0.3s;
        }

        .faq-label::after {
            content: '+';
            font-size: 1.5rem;
            color: var(--accent-color);
            transition: transform 0.3s ease;
        }

        .faq-content {
            max-height: 0;
            overflow: hidden;
            padding: 0 20px;
            color: #555;
            line-height: 1.7;
            transition: max-height 0.4s ease, padding 0.3s ease;
            background: #fff;
        }

        /* Animation Trigger */
        .faq-input:checked ~ .faq-content {
            max-height: 200px; /* Adjust based on text length */
            padding: 10px 20px 25px 20px;
        }

        .faq-input:checked ~ .faq-label {
            background-color: #f0f7fd;
        }

        .faq-input:checked ~ .faq-label::after {
            transform: rotate(45deg);
        }

        .cta-text {
            color: var(--accent-color);
            font-weight: bold;
        }
   
   @media (max-width: 768px) {
    .rct-container {
        display: flex !important;
        flex-direction: column !important;
    }
    
    .rct-content-wrapper {
        order: 1 !important;
    }
    
    .rct-image-wrapper {
        order: 2 !important;
    }
}
 
 
/* Remove all top spacing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Full width hero banner - no spaces anywhere */
.hero-banner {
    background: linear-gradient(145deg, #0b2a3e 0%, #1a4b6d 100%);
    padding: 3rem 1.5rem;
    text-align: center;
    color: white;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: 0;
    margin-bottom: 0;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Ensure no spacing from any parent elements */
section, div, body, html {
    margin: 0;
    padding: 0;
}