/* ========================================
   RCSD (Canadian Dental Care Plan) SECTION
======================================== */

.rcsd-section {
  padding: 48px 8% 48px !important;
  background: linear-gradient(135deg, #FFFFFF 0%, #F5F5F5 100%);
  position: relative;
  overflow: hidden;
}

.rcsd-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */
.rcsd-header {
  text-align: center;
  margin-bottom: 60px;
}

.rcsd-header .section-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #0F2D4E;
  margin-bottom: 16px;
  font-family: 'Playfair Display', serif;
}

.rcsd-header .section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 8px;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.rcsd-separator {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #B89051 0%, #A67E44 100%);
  margin: 20px auto 0;
}

/* CONTENT GRID */
.rcsd-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
  align-items: start;
}

.rcsd-blocks {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.rcsd-block {
  background: #FFFFFF;
  border-radius: 15px;
  padding: 30px;
  border: 2px solid #E8E8E8;
  transition: all 0.3s ease;
}

.rcsd-block:hover {
  border-color: #B89051;
  box-shadow: 0 8px 30px rgba(184, 144, 81, 0.1);
}

.rcsd-block h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #B89051;
  margin-bottom: 15px;
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
}

.rcsd-block h3::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #B89051 0%, #A67E44 100%);
  color: white;
  border-radius: 50%;
  font-weight: bold;
  font-size: 1rem;
  flex-shrink: 0;
}

.rcsd-block p {
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.7;
  margin: 0;
}

.rcsd-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rcsd-block li {
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.8;
  padding-left: 25px;
  position: relative;
  margin-bottom: 8px;
}

.rcsd-block li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #B89051;
  font-weight: bold;
}

.rcsd-block li:last-child {
  margin-bottom: 0;
}

/* ELIGIBILITY CHECKLIST */
.rcsd-eligibility {
  background: linear-gradient(135deg, #B89051 0%, #A67E44 100%);
  border-radius: 15px;
  padding: 40px;
  color: white;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  cursor: pointer;
}

.rcsd-eligibility:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(184, 144, 81, 0.25);
}

.rcsd-eligibility h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 30px;
  color: white;
  font-family: 'Poppins', sans-serif;
}

.rcsd-eligibility h3::before {
  content: '⭐';
  margin-right: 10px;
}

.rcsd-eligibility ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.rcsd-eligibility li {
  font-size: 1rem;
  line-height: 2;
  padding-left: 30px;
  position: relative;
  margin-bottom: 0;
  font-weight: 500;
}

.rcsd-eligibility li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.1rem;
}

.rcsd-verification {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 2px solid rgba(255, 255, 255, 0.3);
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 500;
}

/* CTA SECTION */
.rcsd-cta {
  background: white;
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  border: 2px solid #E8E8E8;
  margin-top: 40px;
}

.rcsd-cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  color: #0F2D4E;
  margin-bottom: 16px;
  font-family: 'Playfair Display', serif;
}

.rcsd-cta p {
  font-size: 1.05rem;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.rcsd-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #B89051 0%, #A67E44 100%);
  color: white;
  padding: 16px 40px;
  border: none;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.rcsd-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(184, 144, 81, 0.3);
}

.rcsd-cta-btn:active {
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .rcsd-section {
    padding: 40px 6% 40px !important;
  }
}

@media (max-width: 768px) {
  .rcsd-section {
    padding: 32px 5% 32px !important;
  }

  .rcsd-header .section-title {
    font-size: 2.5rem;
  }

  .rcsd-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .rcsd-block {
    padding: 20px;
  }

  .rcsd-block h3 {
    font-size: 1.05rem;
  }

  .rcsd-eligibility {
    padding: 30px;
  }

  .rcsd-eligibility h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .rcsd-eligibility li {
    font-size: 0.95rem;
    line-height: 1.8;
  }

  .rcsd-cta {
    padding: 40px 20px;
    margin-top: 30px;
  }

  .rcsd-cta h2 {
    font-size: 1.6rem;
  }

  .rcsd-cta p {
    font-size: 0.95rem;
  }
}
