/* ============================================
   AIDES FINANCIÈRES SECTION
   Regional financial aid information styling
   ============================================ */

.aides-section {
  background: white;
  padding: 80px 0;
}

.aides-section .services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.aides-section .section-header {
  text-align: center;
  margin-bottom: 48px;
}

.aides-section .section-overline {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #FF6B4A;
  margin-bottom: 12px;
}

.aides-section .section-title {
  font-size: 36px;
  font-weight: 700;
  color: #171717;
  margin-bottom: 12px;
  line-height: 1.2;
}

.aides-section .section-subtitle {
  font-size: 18px;
  color: #737373;
  line-height: 1.6;
}

.aides-box {
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
  border-radius: 16px;
  padding: 48px;
  border: 2px solid #FBBF24;
  box-shadow: 0 10px 25px rgba(251, 191, 36, 0.15);
}

.aides-title {
  font-size: 24px;
  font-weight: 700;
  color: #78350F;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.aides-title span[role="img"] {
  font-size: 32px;
}

.aides-box p {
  font-size: 16px;
  color: #78350F;
  line-height: 1.8;
  margin-bottom: 12px;
}

.aides-box strong {
  color: #78350F;
  font-weight: 700;
}

.aides-box h4 {
  font-size: 18px;
  font-weight: 700;
  color: #78350F;
  margin-top: 32px;
  margin-bottom: 16px;
}

.aides-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px 0;
}

.aides-list li {
  font-size: 16px;
  color: #78350F;
  line-height: 1.8;
  padding-left: 8px;
  margin-bottom: 8px;
}

.aides-example {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  padding: 20px;
  margin: 16px 0 24px 0;
  border-left: 4px solid #F59E0B;
}

.aides-example p {
  margin-bottom: 8px;
  font-weight: 600;
}

.aides-example p:last-child {
  margin-bottom: 0;
  font-size: 18px;
}

.aides-steps {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  margin: 16px 0 24px 0;
}

.aides-steps li {
  counter-increment: step-counter;
  position: relative;
  padding-left: 36px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #78350F;
  line-height: 1.8;
}

.aides-steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background: #F59E0B;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.aides-box a {
  color: #92400E;
  text-decoration: underline;
  font-weight: 600;
}

.aides-box a:hover {
  color: #78350F;
}

/* Responsive */
@media (max-width: 768px) {
  .aides-section {
    padding: 60px 0;
  }

  .aides-box {
    padding: 32px 24px;
  }

  .aides-title {
    font-size: 20px;
  }

  .aides-section .section-title {
    font-size: 28px;
  }
}
