:root {
  /* Fonts */
  --font-main: 'Manrope', sans-serif;

  /* Colors */
  --color-dark: #1F2937;
  --color-text-grey: #6B7280;
  
  --color-btn-orange: #E08307;

  /* Card Border Colors */
  --color-math: #4DABF7;    /* Blue */
  --color-nature: #9ED468;  /* Light Green */
  --color-social: #9B59B6;  /* Purple */
  --color-art: #DFA064;     /* Muted Orange/Bronze */
  --color-personal: #54B7EA;/* Cyan Blue */

  /* Spacing */
  --section-spacing: 100px;
}

/* --- Programs Section --- */
.programs {
  background-color: #fff;
  overflow: hidden;
}

.programs__title {
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.2;
  color: var(--color-dark);
  margin-bottom: 1rem;
}

.programs__desc {
  font-size: 1.125rem;
  line-height: 1.5;
  color: #6C757D;
  max-width: 700px;
}

/* Button Styling */
.programs__btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--color-btn-orange);
  color: #fff;
  border-radius: 50px;
  padding: 12px 14px 12px 30px;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 15px rgba(224, 131, 7, 0.2);
}

.programs__btn:hover {
  background-color: #c77206;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(224, 131, 7, 0.3);
  color: #fff;
}

.programs__btn:active {
  transform: scale(0.98);
}

.programs__btn-icon {
  background-color: #fff;
  color: var(--color-btn-orange);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  transition: transform 0.3s ease;
}

.programs__btn:hover .programs__btn-icon {
  transform: translateX(3px);
}

/* Card Styling */
.program2-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 200px;
  aspect-ratio: 1 / 1;
  background-color: #fff;
  border: 2px solid transparent;
  border-radius: 30px;
  padding: 20px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: default;
  position: relative;
  z-index: 1;
}

.program2-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.program2-card__icon-wrapper {
  margin-bottom: 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.program2-card__icon {
  max-width: 60px;
  max-height: 60px;
  width: auto;
  height: auto;
  display: block;
}

.program2-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-dark);
  line-height: 1.3;
  margin: 0;
}

/* Card Modifiers - Border Colors */
.program2-card--math {
  border-color: var(--color-math);
}

.program2-card--nature {
  border-color: var(--color-nature);
}

.program2-card--social {
  border-color: var(--color-social);
}

.program2-card--art {
  border-color: var(--color-art);
}

.program2-card--personal {
  border-color: var(--color-personal);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .programs__title {
    font-size: 2.5rem;
  }
  
  .program2-card {
    aspect-ratio: auto;
    min-height: 200px;
  }
}

@media (max-width: 576px) {
  .programs__title {
    font-size: 2rem;
  }
  
  .programs__btn {
    width: 100%;
    justify-content: center;
  }
  
  .programs__btn-icon {
    margin-left: auto;
  }
}