.hero-section {
  background-image: url('images/why-coding-temple-header.svg');
  background-size: cover;
  background-position: center;
  height: 400px;
  position: relative;
  color: #fff;
}

.overlay-text {
  position: relative;
  z-index: 2;
}

.text-teal {
  color: #00d3aa;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.8); /* Optional: soft overlay */
  z-index: 1;
}
.mission-section {
  background-color: #000;
  padding: 80px 0;
}

.mission-text {
  max-width: 600px;
}

.mission-text h2 {
  font-size: 2.75rem;
}

.mission-text h5 {
  font-size: 1.25rem;
}

.mission-text p {
  font-size: 1rem;
  line-height: 1.7;
}

.mission-image img {
  max-width: 400px;
  height: auto;
}
.why-cupule-section {
  background-color: #f9f9f9;
}

.card-item .icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: #00c2a8;
}
.cupule-difference-section {
  background-color: #f9f9f9;
}

.venn-img {
  max-width: 450px;
  margin: 0 auto;
}

.legend-icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 8px;
  border-radius: 3px;
}
.core-values-section {
  background: #fff;
}

.highlighted {
  background-color: #000;
  color: #fff;
  padding: 0 0.4em;
  border-radius: 0.2em;
}

.text-teal {
  color: #00c7b7;
}

.value-tile {
  background: #fdfdfd;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 0 0.5rem rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.value-tile:hover {
  box-shadow: 0 0 1rem rgba(0,0,0,0.1);
}

.company-focus {
  background-color: #f9fdfa;
  display: flex;
  align-items: center;
  justify-content: center;
}
.student-values-section {
  background-color: #0a0a0a;
}

.value-card {
  background-color: #151515;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 0 0.5rem rgba(0,0,0,0.4);
  height: 100%;
}

.value-card h5 {
  margin-bottom: 0.75rem;
}

.text-warning {
  color: #f4c038; /* warm yellow-orange */
}
.footer a {
      color: #ccc;
      margin-right: 20px;
      text-decoration: none;
    }
    .footer a:hover {
      text-decoration: underline;
    }
    .footer {
      font-size: 0.9rem;
      padding: 20px 0;
    }
    .footer .right {
      text-align: right;
    }

  .sticky-box {
    position: sticky;
    top: 1rem;
    border: 1px solid #000;
    padding: 2rem;
    background-color: white;
  }

  .option-box {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 1px solid #eee;
    border-radius: 4px;
    margin-bottom: 1rem;
    background-color: #fff;
  }

  .option-box img,
  .option-box svg {
    width: 32px;
    height: 32px;
    margin-right: 1rem;
  }
  .scholarship-section {
    background: linear-gradient(90deg, #0cfffe, #0cfffe);
    padding: 4rem 2rem;
    text-align: center;
  }

  .scholarship-section h2 {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .scholarship-section p {
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto 2rem;
  }

  .scholarship-section .btn {
    font-weight: 600;
    padding: 0.75rem 2rem;
    font-size: 1rem;
  }
  .funding-steps-section {
    padding: 4rem 2rem;
    background-color: #fff;
  }

  .funding-steps-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
  }

  .funding-steps-section .step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 2rem;
  }

  .funding-steps-section .step-number {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    font-weight: 600;
    border-radius: 50%;
    border: 2px solid #000;
    text-align: center;
    line-height: 2.25rem;
    font-size: 1.25rem;
  }

  .funding-steps-section .step-text h5 {
    font-weight: 700;
    font-size: 1.125rem;
  }

  .funding-steps-section .step-text p {
    margin: 0.25rem 0 0;
    font-size: 1rem;
    color: #555;
  }
   .faq-section {
    padding: 4rem 2rem;
    background-color: #fff;
  }

  .faq-section h2 {
    font-size: 2.25rem;
    font-weight: 700;
  }

  .faq-section .accordion-button:not(.collapsed) {
    background-color: transparent;
    color: #000;
    box-shadow: none;
  }

  .faq-section .accordion-button::after {
    transition: transform 0.3s ease;
  }

  .faq-section .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
  }

  .faq-section .accordion-body {
    color: #444;
    font-size: 1rem;
  }

  .faq-section .section-label {
    color: #0cb28b;
    font-weight: 700;
    font-size: 1rem;
  }