
.dj-appointment-section {
  background-color: #f8faff; /* Light background behind the card */
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* --- Wrapper --- */
.dj-wrapper {
  border-radius: 12px;
  overflow: hidden;
  background-color: #ffffff;
}

/* --- Left Panel (Gradient + Image) --- */
.dj-left-panel {
  /* Gradient ko transparent kiya hai (rgba) aur uske baad image ka URL lagaya hai */
  background: linear-gradient(135deg, rgba(40, 59, 106, 0.9) 0%, rgba(29, 190, 178, 0.85) 100%), url('assets/images/team/3.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px;
  color: #ffffff;
}

.dj-badge {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 18px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.dj-main-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}

.dj-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

/* Left Panel Contact Info */
.dj-icon-circle {
  width: 50px;
  height: 50px;
  background: rgba(29, 190, 178, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #1dbeb2;
}

.dj-contact-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.dj-contact-value {
  font-size: 1.2rem;
  color: #ffffff;
  letter-spacing: 0.5px;
}

/* --- Right Panel (Form) --- */
.dj-right-panel {
  padding: 50px;
}

.dj-form-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #283b6a;
  margin-bottom: 10px;
}

.dj-divider {
  width: 50px;
  height: 3px;
  background-color: #1dbeb2;
  border-radius: 2px;
}

/* Form Fields */
.dj-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #4a5568;
  margin-bottom: 8px;
  display: block;
}

.dj-input {
  border: 1px solid #e2e8f0;
  border-radius: 2px;
  padding: 12px 15px;
  margin-bottom: 10px;
  font-size: 1rem;
  color: #283b6a;
  box-shadow: none !important;
  transition: all 0.3s ease;
  background-color: #ffffff;
}

.dj-input::placeholder {
  color: #a0aec0;
  font-weight: 400;
}

.dj-input:focus {
  border-color: #1dbeb2;
  box-shadow: 0 0 0 3px rgba(29, 190, 178, 0.15) !important;
}

/* Submit Button (Left Aligned, Normal Width) */
.dj-submit-btn {
  display: inline-flex;
  align-items: center;
  background-color: #283b6a;
  color: #ffffff;
  border: none;
  padding: 14px 30px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.dj-submit-btn:hover {
  background-color: #1dbeb2;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(29, 190, 178, 0.3);
}

.dj-submit-btn i {
  transition: transform 0.3s ease;
}

.dj-submit-btn:hover i {
  transform: translateX(4px) translateY(-4px);
}

/* =========================================
   RESPONSIVE DESIGN (MOBILE & TABLET FIX)
   ========================================= */
@media (max-width: 991px) {
  /* Tablet/Mobile Adjustments */
  .dj-left-panel {
    padding: 40px 25px;
  }
  
  .dj-right-panel {
    padding: 40px 25px;
  }
  
  .dj-main-title {
    font-size: 2.2rem;
  }
  
  .dj-form-title {
    font-size: 1.8rem;
  }
  
  .dj-contact-info {
    margin-top: 40px !important;
  }
}

@media (max-width: 575px) {
  /* Small Mobile Specific Adjustments */
  .dj-left-panel, .dj-right-panel {
    padding: 30px 40px;
  }
  
  .dj-main-title {
    font-size: 2rem;
  }
  
  .dj-submit-btn {
    width: 100%; /* Agar mobile me button full width chahiye to ise rakhein, warna is line ko hata dein */
    justify-content: center;
  }
}

.premium-about-section {
  background-color: #ffffff;
  padding: 100px 0;
  font-family: 'Plus Jakarta Sans', 
}

/* Subtitle with line */
.subtitle-wrapper {
  display: flex;
  align-items: center;
}

.premium-subtitle {
  color: #1dbeb2;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 13px;
  position: relative;
  padding-left: 50px;
}

.premium-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 40px;
  height: 2px;
  background-color: #1dbeb2;
  transform: translateY(-50%);
}

/* Headings with Royal Serif Font */
.premium-heading {
font-family: 'Playfair Display', serif;
  color: #283b6a;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.15;
}

.text-gradient {
  background: linear-gradient(to right, #283b6a, #1dbeb2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  
  font-weight: 800;
}

/* Paragraphs */
.premium-content p {
  color: #202021;
  font-size: 17px;
  line-height: 1.8;
  font-weight: 400;
}

.premium-content strong {
  color: #283b6a;
  font-weight: 600;
}

/* Premium Highlight Boxes */
.highlight-box {
  display: flex;
  align-items: center;
  background: #f8faff;
  padding: 15px;
  border-radius: 8px;
  border-left: 3px solid #1dbeb2;
  transition: all 0.3s ease;
}

.highlight-box:hover {
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(40, 59, 106, 0.08);
  transform: translateY(-3px);
}

.highlight-box .icon-box {
  width: 45px;
  height: 45px;
  background: rgba(29, 190, 178, 0.1);
  color: #1dbeb2;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.2rem;
  margin-right: 15px;
}

.highlight-box span {
  color: #283b6a;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.3;
}

/* Ultra Premium Button */
.premium-btn {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(to right, #1dbeb2, #283b6a); /* Solid dark blue */
  color: #ffffff !important;
  padding: 16px 35px;
  border-radius: 1px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.premium-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: linear-gradient(to right, #1dbeb2, #189b91);
  transition: all 0.4s ease;
  z-index: -1;
}

.premium-btn:hover::before {
  width: 100%;
}

.premium-btn i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.premium-btn:hover i {
  transform: translateX(5px);
}

/* Image Section - Geometric Premium Look */
.image-wrapper {
  position: relative;
  padding-right: 30px;
  padding-bottom: 30px;
}

.image-backdrop {
  position: absolute;
  top: 30px;
  right: 0;
  bottom: 0;
  left: 30px;
  background: linear-gradient(135deg, rgba(29, 190, 178, 0.1), rgba(40, 59, 106, 0.05));
  border: 2px solid #1dbeb2;
  border-radius: 12px;
  z-index: -1;
}

.doctor-premium-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: -10px 15px 40px rgba(40, 59, 106, 0.15);
  display: block;
}

/* Sleek Badge */
.premium-exp-badge {
  position: absolute;
  bottom: -15px;
  left: -20px;
  background: linear-gradient(135deg, #283b6a, #1d2a4d);
  color: #ffffff;
  padding: 20px 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 15px 30px rgba(40, 59, 106, 0.3);
  border-bottom: 4px solid #1dbeb2;
}

.premium-exp-badge .exp-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: #1dbeb2;
}

.premium-exp-badge .exp-text {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 991px) {
  .premium-heading { font-size: 2.5rem; }
  .image-wrapper { padding-right: 15px; padding-bottom: 15px; margin-top: 40px; }
  .image-backdrop { top: 15px; left: 15px; }
  .premium-exp-badge { left: 50%; transform: translateX(-50%); bottom: -30px; width: max-content; }
}
@media(max-width: 576px){
    .premium-heading, .alt-main-heading, .outreach-title, .dj-main-title, .dj-faq-title{
        font-size: 25px !important;
    }
}

  .consultation-section {
    padding: 30px 0; /* Reduced overall spacing */
    background-color: #f9fbfd;
  }
  .consult-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: none;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  /* Gradient Top Border */
  .consult-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #1dbeb2, #283b6a);
  }
  /* Inline Header Layout */
  .card-header-inline {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
  }
  .consult-icon {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    background: linear-gradient(to right, #1dbeb2, #283b6a);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 15px;
    flex-shrink: 0;
  }
  .consult-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #283b6a;
    margin: 0;
  }
  /* Perfectly Aligned Inline List */
  .consult-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    flex-grow: 1;
  }
  .consult-list li {
     font-family:'Montserrat', sans-serif !important;
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    color: #333;
    font-size: 16px;
    line-height: 1.4;
  }
  /* Small Gradient Icons for text lines */
  .consult-list i {
    background: -webkit-linear-gradient(#1dbeb2, #283b6a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.1rem;
    margin-top: 3px;
    margin-right: 12px;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
  }
  /* Buttons */
  .action-btn {
    border-radius: 6px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;

    transition: all 0.2s ease;
  }
  /* Authentic WhatsApp Color */
  .whatsapp-btn {
    background-color: #25D366; 
    color: #ffffff !important;
  }
  .whatsapp-btn:hover {
    background-color: #128C7E;
  }
  /* Standard Gradient Button */
  .gradient-btn {
    background: linear-gradient(to right, #1dbeb2, #283b6a);
    color: #ffffff !important;
    border: none;
  }
  .gradient-btn:hover {
    opacity: 0.9;
  }

  .upg-bread-banner {
    position: relative;
    padding: 120px 0; 
    background-image: 
      linear-gradient(to right, rgba(40, 59, 106, 0.85), rgba(30, 173, 168, 0.85)),
      url('../img/colon-1img-1.jpg'); 
    
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll; /* Change to 'fixed' for parallax effect */
    
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    font-family: 'Inter', 'Segoe UI', sans-serif;
  }

  .upg-bread-container {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    position: relative;
    z-index: 1;
  }

  .upg-bread-title {
      font-family: 'Playfair Display', serif;
    color: #ffffff;
    font-size: 35px;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
    letter-spacing: 1px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 0.8s ease-out forwards;
  }

  /* Simple Entry Animation */
  @keyframes fadeInDown {
    0% {
      opacity: 0;
      transform: translateY(-20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Responsive Adjustments */
  @media (max-width: 991px) {
    .upg-bread-banner {
      padding: 100px 0;
    }
    .upg-bread-title {
      font-size: 2.8rem;
    }
  }

  @media (max-width: 768px) {
    .upg-bread-banner {
      padding: 80px 0;
    }
    .upg-bread-title {
      font-size: 2.2rem;
    }
  }

  @media (max-width: 480px) {
    .upg-bread-banner {
      padding: 60px 0;
    }
    .upg-bread-title {
      font-size: 25px;
    }
  }

  .cc-care-section {
    padding: 80px 0;
    background-color: #ffffff;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    overflow: hidden;
  }

  /* Image Wrap & Creative Backdrop */
  .cc-care-img-wrapper {
    position: relative;
    padding-right: 20px;
    padding-bottom: 20px;
    z-index: 1;
  }

  .cc-care-img-backdrop {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 85%;
    height: 85%;
    background: linear-gradient(135deg, #1eada8, #283b6a);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.15;
    transition: all 0.4s ease;
  }

  .cc-care-img {
    width: 100%;
    height: 250px !important;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
  }

  .cc-care-img-wrapper:hover .cc-care-img {
    transform: translateY(-8px);
  }

  .cc-care-img-wrapper:hover .cc-care-img-backdrop {
    transform: translate(10px, 10px);
    opacity: 0.25;
  }

  /* Content Styling */
  .cc-care-content {
    padding-left: 15px;
  }

  .cc-care-heading {
    font-family: 'Playfair Display', serif;
    font-size: 35px;
    font-weight: 800;
    color: #283b6a;
    line-height: 1.3;
    margin-bottom: 25px;
  }

  .cc-care-heading span {
    color: #1eada8;
  }

  .cc-care-text {
    font-size: 1.05rem;
    color: #2e2d2d;
    line-height: 1.7;
    margin-bottom: 20px;
  }
  
  .cc-care-text strong {
      color: #283b6a;
      font-weight: 700;
  }

  /* Buttons */
  .cc-btn-group {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
  }

  .cc-btn {
    padding: 12px 28px;
    border-radius: 1px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
  }

  .cc-btn-primary {
    background-color: #1fa9a6;
    color: #ffffff !important;
    border: 2px solid #1eada8;
  }

  .cc-btn-primary:hover {
    background-color: #283b6a;
    border-color: #283b6a;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(40, 59, 106, 0.25);
  }

  .cc-btn-secondary {
    background-color: transparent;
    color: #283b6a !important;
    border: 2px solid #283b6a;
  }

  .cc-btn-secondary:hover {
    background-color: #283b6a;
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(40, 59, 106, 0.2);
  }

  /* Highlight Box for Sub-section */
  .cc-care-info-box {
    background-color: #f7fcfe; 
    border-left: 4px solid #1eada8;
    border-radius: 0 12px 12px 0;
    padding: 35px 40px;
    margin-top: 35px;
    box-shadow: 0 5px 20px rgba(30, 173, 168, 0.05);
    transition: all 0.3s ease;
  }

  .cc-care-info-box:hover {
    box-shadow: 0 10px 25px rgba(40, 59, 106, 0.1);
    background-color: #ffffff;
  }

  .cc-care-subheading {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #283b6a;
    margin-bottom: 15px;
  }

  .cc-care-box-text {
    font-size: 1.05rem;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 0;
  }

  /* Responsive Adjustments */
  @media (max-width: 991px) {
    .cc-care-content {
      padding-left: 0;
      margin-top: 40px;
    }
    .cc-care-heading {
      font-size: 2.2rem;
    }
    .cc-care-img-wrapper {
      padding-right: 15px;
      padding-bottom: 15px;
    }
  }

  @media (max-width: 576px) {
    .cc-care-heading {
      font-size: 25px;
    }
    .cc-care-info-box {
      padding: 25px 20px;
    }
    .cc-btn-group {
      flex-direction: column;
    }
    .cc-btn {
      justify-content: center;
    }
  }

  .cc-rec-section {
    padding: 40px 0; /* Space reduced from 80px to 40px */
    background-color: #f8fcfc; 
    font-family: 'Inter', 'Segoe UI', sans-serif;
  }

  /* Inner Wrapper for max-width alignment */
  .cc-rec-wrapper {
    max-width: 900px;
    margin: 0 auto;
  }

  /* Headings */
  .cc-rec-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem; /* Slightly reduced for compact look */
    font-weight: 800;
    color: #283b6a;
    line-height: 1.3;
    margin-bottom: 15px; /* Reduced margin */
    text-align: center;
  }

  .cc-rec-heading span {
    color: #1eada8;
  }

  /* Introductory Text */
  .cc-rec-intro {
    font-size: 1.05rem;
    color: #555555;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 25px; /* Reduced from 40px */
  }

  /* Grid List Layout */
  .cc-rec-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px; /* Reduced gap between boxes */
    margin-bottom: 25px; /* Reduced from 40px */
  }

  /* Individual List Items */
  .cc-rec-item {
    background: #ffffff;
    padding: 15px 20px; /* Reduced inner padding */
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(30, 173, 168, 0.1);
    transition: all 0.3s ease;
  }

  .cc-rec-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 59, 106, 0.08);
    border-color: rgba(30, 173, 168, 0.3);
  }

  .cc-rec-icon {
    color: #1eada8;
    font-size: 1.15rem;
    margin-top: 3px;
    flex-shrink: 0;
  }

  .cc-rec-text {
    font-size: 0.95rem;
    color: #333333;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
  }

  /* Conclusion / Alert Box */
  .cc-rec-alert {
    background: linear-gradient(to right, rgba(40, 59, 106, 0.03), transparent);
    border-left: 4px solid #283b6a;
    padding: 15px 25px; /* Reduced padding */
    border-radius: 0 8px 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }

  .cc-rec-alert-icon {
    color: #283b6a;
    font-size: 1.3rem;
    margin-top: 2px;
  }

  .cc-rec-alert p {
    font-size: 0.95rem;
    color: #444444;
    line-height: 1.5;
    margin: 0;
    font-style: italic;
  }

  .cc-rec-alert p strong {
    color: #283b6a;
    font-style: normal;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .cc-rec-heading {
      font-size: 25px;
      text-align: left;
    }
    .cc-rec-intro {
      text-align: left;
    }
    .cc-rec-list {
      grid-template-columns: 1fr; /* Single column on mobile */
    }
  }

  .cc-appr-section {
    padding: 50px 0; /* Kept compact */
    background-color: #ffffff;
    font-family: 'Inter', 'Segoe UI', sans-serif;
  }

  /* Section Header */
  .cc-appr-header {
    text-align: center;
    margin-bottom: 40px;
  }

  .cc-appr-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #283b6a;
    margin-bottom: 10px;
    line-height: 1.3;
  }

  .cc-appr-title span {
    color: #1eada8;
  }

  /* Card Layout */
  .cc-appr-card {
    background: #ffffff;
    border: 1px solid #f0f4f8;
    border-radius: 12px;
    padding: 30px 25px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
  }

  /* Top Gradient Bar on Hover */
  .cc-appr-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #1eada8, #283b6a);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }

  .cc-appr-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(40, 59, 106, 0.08);
    border-color: rgba(30, 173, 168, 0.2);
  }

  .cc-appr-card:hover::before {
    transform: scaleX(1);
  }

  /* Icon Box */
  .cc-appr-icon {
    width: 60px;
    height: 60px;
    background: rgba(30, 173, 168, 0.1);
    color: #1eada8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    transition: all 0.4s ease;
  }

  .cc-appr-card:hover .cc-appr-icon {
    background: #1eada8;
    color: #ffffff;
    box-shadow: 0 8px 15px rgba(30, 173, 168, 0.3);
  }

  /* Text Content */
  .cc-appr-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #283b6a;
    margin-bottom: 12px;
  }

  .cc-appr-card-desc {
    font-size: 0.95rem;
    color: #555555;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
  }

  /* Medical Note / Disclaimer Box */
  .cc-appr-note {
    margin-top: 35px;
    background-color: #f7fcfe;
    border-radius: 8px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 4px solid #283b6a;
  }

  .cc-appr-note-icon {
    font-size: 22px;
    color: #283b6a;
    flex-shrink: 0;
  }

  .cc-appr-note p {
    margin: 0;
    font-size: 0.95rem;
    color: #444444;
    line-height: 1.5;
  }

  .cc-appr-note p strong {
    color: #283b6a;
  }

  /* Responsive Adjustments */
  @media (max-width: 991px) {
    .cc-appr-card {
      padding: 25px 20px;
    }
  }

  @media (max-width: 768px) {
    .cc-appr-section {
      padding: 40px 0;
    }
    .cc-appr-title {
      font-size: 25px;
    }
    .cc-appr-note {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }
  }

  .cc-plan-section {
    padding: 70px 0;
    background-color: #ffffff;
    font-family: 'Inter', 'Segoe UI', sans-serif;
  }

  /* Left Side: Sticky Content */
  .cc-plan-header-wrap {
    position: sticky;
    top: 100px; /* Adjust based on your header height */
    padding-right: 20px;
  }

  .cc-plan-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: #283b6a;
    line-height: 1.25;
    margin-bottom: 20px;
  }

  .cc-plan-title span {
    color: #1eada8;
  }

  .cc-plan-intro {
    font-size: 1.05rem;
    color: #555555;
    line-height: 1.7;
    margin: 0;
  }

  /* Right Side: Timeline Layout */
  .cc-plan-timeline {
    position: relative;
    padding-left: 40px;
    margin-top: 10px;
  }

  /* The vertical line */
  .cc-plan-timeline::before {
    content: '';
    position: absolute;
    top: 5px;
    bottom: 25px; /* Stops before the last item ends */
    left: 15px;
    width: 2px;
    background: rgba(30, 173, 168, 0.2);
  }

  /* Individual Timeline Item */
  .cc-plan-item {
    position: relative;
    padding-bottom: 35px;
    padding-left: 20px;
  }

  .cc-plan-item:last-child {
    padding-bottom: 0;
  }

  /* Numbered Nodes */
  .cc-plan-node {
    position: absolute;
    left: -41px; /* Align perfectly with the vertical line */
    top: 0;
    width: 32px;
    height: 32px;
    background: #ffffff;
    border: 2px solid #1eada8;
    color: #283b6a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 4px #ffffff; /* Clean cut through the line */
  }

  /* Hover effect on timeline item */
  .cc-plan-item:hover .cc-plan-node {
    background: #1eada8;
    color: #ffffff;
    box-shadow: 0 0 0 4px #ffffff, 0 5px 15px rgba(30, 173, 168, 0.4);
    transform: scale(1.1);
  }

  /* Text inside timeline */
  .cc-plan-text {
    font-size: 1.05rem;
    color: #333333;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
    padding-top: 4px;
    transition: color 0.3s ease;
  }

  .cc-plan-item:hover .cc-plan-text {
    color: #1eada8;
  }

  /* Responsive Adjustments */
  @media (max-width: 991px) {
    .cc-plan-header-wrap {
      position: relative;
      top: 0;
      padding-right: 0;
      margin-bottom: 40px;
    }
  }

  @media (max-width: 768px) {
    .cc-plan-section {
      padding: 50px 0;
    }
    .cc-plan-title {
      font-size: 25px;
    }
    .cc-plan-timeline {
      padding-left: 30px;
    }
    .cc-plan-timeline::before {
      left: 10px;
    }
    .cc-plan-node {
      left: -36px;
    }
  }

  .cc-info-section {
    padding: 60px 0;
    background-color: #ffffff;
    font-family: 'Inter', 'Segoe UI', sans-serif;
  }

  /* Info Box Layout */
  .cc-info-box {
    background-color: #fdfefe; /* Extremely light grey/blue */
    border: 1px solid #edf1f5;
    border-left: 4px solid #1eada8;
    border-radius: 10px;
    padding: 30px;
    height: 100%; /* Ensures equal height in col-md-6 grid */
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
  }

  /* Subtle Hover Effect */
  .cc-info-box:hover {
    box-shadow: 0 8px 20px rgba(40, 59, 106, 0.05);
    background-color: #ffffff;
  }

  /* Header inside Box */
  .cc-info-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
  }

  .cc-info-icon {
    color: #1eada8;
    font-size: 1.4rem;
    background: rgba(30, 173, 168, 0.1);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
  }

  .cc-info-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #283b6a;
    margin: 0;
    line-height: 1.3;
    padding-top: 5px;
  }

  /* Text Content */
  .cc-info-body {
    flex-grow: 1; /* Pushes content to fill space */
  }

  .cc-info-body p {
    font-size: 1rem;
    color: #555555;
    line-height: 1.6;
    margin: 0;
  }

  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .cc-info-section {
      padding: 40px 0;
    }
    .cc-info-box {
      padding: 20px;
    }
  }

    .dj-custom-faq-section {
  background-color: #97d0d21f; 
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.dj-faq-subtitle {
  display: inline-block;
  background-color: rgba(29, 190, 178, 0.1);
  border: 1px solid #1dbeb2;
  color: #1dbeb2;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.dj-faq-title {
  font-family: 'Playfair Display', serif;
  font-size: 35px;
  font-weight: 800;
  color: #283b6a;
}

.dj-custom-acc-item {
  background-color: #ffffff;
  border: 1px solid rgba(40, 59, 106, 0.08) !important;
  border-radius: 10px !important;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(40, 59, 106, 0.03);
  transition: all 0.3s ease;
  overflow: hidden;
}

.dj-custom-acc-item:hover {
  box-shadow: 0 8px 25px rgba(40, 59, 106, 0.08);
  border-color: rgba(29, 190, 178, 0.3) !important;
}

.dj-custom-acc-header {
  cursor: pointer;
  padding: 18px 20px;
  background-color: #ffffff;
  transition: all 0.3s ease;
  display: block;
}

.dj-custom-acc-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #283b6a !important;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none !important;
  transition: all 0.3s ease;
  width: 100%;
}

.dj-custom-acc-title::before {
  display: none !important;
}

.dj-custom-acc-header:not(.collapsed) .dj-custom-acc-title {
  color: #1dbeb2 !important;
}

.dj-custom-acc-title::after {
  content: '+';
  font-family: sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #283b6a;
  transition: transform 0.3s ease, color 0.3s ease;
  line-height: 1;
  margin-left: 10px;
}

.dj-custom-acc-header[aria-expanded="true"] .dj-custom-acc-title::after,
.dj-custom-acc-header:not(.collapsed) .dj-custom-acc-title::after {
  content: '-';
  color: #1dbeb2;
  transform: rotate(180deg);
}

.dj-custom-acc-body {
  padding: 0 20px 20px 20px;
  background-color: #ffffff;
}

.dj-custom-acc-body p {
  color: #5a657c;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .dj-faq-title {
    font-size: 25px;
  }
  .dj-custom-acc-title {
    font-size: 1rem;
  }
}
