:root {
      --orange: #FF6D38;
      --dark: #111;
      --light: #fff;
      --gray: #555;
      --bg-gradient: linear-gradient(to bottom, #fff, #ffeae1);
      --section-gradient: linear-gradient(to bottom, #ff9a6c, #ff6a32);
    }

    html {
        scroll-behavior: smooth !important;
    }
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--dark);
      background: white;
      line-height: 1.6;
    }

    header {
      display: flex;
      justify-content: space-evenly;
      align-items: center;
      position: fixed;
      width: 100vw;
      height: 10vh;
      background-color: #fff;
      filter: opacity(83%);
      backdrop-filter: blur(10px);
    }

    header h1 {
      font-size: 2rem;
      font-weight: 700;
    }

    nav ul {
      display: flex;
      gap: 2vw;
      list-style: none;
      align-items: center;
      font-size: 1.1rem;
    }

    nav li a:hover {
      color: rgb(160, 47, 47);
    }

    nav a {
      text-decoration: none;
      color: var(--dark);
      font-weight: 500;
    }

    .btn {
      background: var(--orange);
      color: var(--light);
      padding: 0.6rem 2rem;
      border-radius: 77px;
      text-decoration: none;
      font-weight: 500;
      transition: opacity 0.2s;
    }

    .btn:hover {
      opacity: 0.8;
    }

    /* Hero Section */
    #hero {
      text-align: center;
      padding: 6rem 2rem 4rem;
      height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      background-color: white;
    }

    .hero-subtitle {
      max-width: 630px;
      text-align: left;
      font-weight: 500;
      margin: 1rem 0 1rem 0;
      color: rgb(38, 38, 38);
    }

    #hero h2 {
      font-size: 3rem;
      font-weight: 400;
      text-align: left;
    }

    #hero h2 span {
      color: var(--orange);
      text-decoration: underline dotted;
    }

    #hero .cta {
      margin-top: 2rem;
      display: flex;
      justify-content: center;
      gap: 1rem;
      flex-direction: column;
      width: 640px;
    }

    .cta a:first-child {
      background: var(--orange);
      color: var(--light);
      border: none;
      padding: 0.8rem 3rem;
      font-weight: 500;
      text-decoration: none;
      font-size: 1.4rem;
      width: 350px;
    }

    .cta a:first-child:hover {
      background: #111111;
      transition: ease-in-out 0.15s;
    }

    .cta a:last-child {
      border: 1px solid var(--dark);
      color: var(--dark);
      padding: 0.8rem 2.2rem;
      font-weight: 500;
      background: var(--light);
      text-decoration: none;
      font-size: 1.35rem;
      width: 350px;
    }

    .cta a:last-child:hover {
      background: #111111;
      color: white;
      transition: ease-in-out 0.15s;
    }

    .scroll-down {
        position: absolute;
        bottom: 50px;
        left: 50%;
    transform: translateX(-50%);
    }

    .scroll-down:hover {
        position: absolute;
        bottom: 55px;
        transition: ease-in-out 0.15s;
    }

    /* Programs Section */
    #programs {
      text-align: center;
      display: flex;
      flex-direction: column;
      padding: 4rem 2rem;
      min-height: 700px;
      background: #ffffff;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 219, 206, 1) 71%, rgba(255, 255, 255, 1) 100%);
    }

    #programs h3 {
      font-size: 3rem;
      margin-top: 7rem;
      font-weight: 700;
    }

    #programs p {
        margin-bottom: 4rem;
    }

    .program-list {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: 0 auto;
      gap: 1.5rem;
    }

    .program-item {
      background: var(--light);
      padding: 2rem;
      border-radius: 20px;
      box-shadow: 2 2 24 -8 black;
      width: 250px;
      height: 250px;
    }

    .program-item:hover {
        scale: 1.1;
        transition: ease-in-out 0.2s;
        cursor: pointer;
    }

    .program-item:nth-child(3) h4 {
      font-size: 1rem;
    }
    .program-item:nth-child(4) h4 {
      font-size: 1.1rem;
    }

    .program-img {
        HEIGHT: 7rem;
    }

    .program-title {
        font-size: 1.3rem;
    }
    .program-subtitle {
        font-size: .8rem;
    }

    /* Learning Approach */
    #learning {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 3rem;
      padding: 6rem 10%;
      text-align: left;
      background-color: white;
    }

    #learning div{
        max-width: 600px;
    }

    #learning h4 {
      font-size: 3rem;
      margin-bottom: 1rem;
      font-weight: 700;
    }

    #learning ul {
      list-style: disc;
      margin-left: 1.5rem;
      color: var(--gray);
      font-size: 1.1rem;
    }

    .scroll-down2 {
        margin: 5rem 0 0 0;
        flex-basis: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .scroll-down2:hover {
        transform: translateY(-10px);
        transition: ease-in-out 0.15s;
    }

    /* Core Themes */
    #themes {
      background: white;
      padding: 8rem 2rem;
      text-align: center;
      color: black;display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
    }

    #themes h3 {
      font-size: 3rem;
      margin-bottom: 5rem;
      font-weight: 700;
      flex-basis: 100%;
    }


    .theme-list {
        max-width: 1300px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .theme-item {
      background: var(--light);
      color: var(--dark);
      padding: 2rem;
      width: 600px;
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: left;
      gap: 1rem;
      box-shadow: 1.7450628280639648px 1.7450628280639648px 49.0362663269043px -8.725314140319824px rgba(83, 83, 83, 25%);
    }

    .theme-item:hover {
      scale: 1.01;
      transition: ease-in-out 0.2s;
      cursor: pointer;
    }

    .theme-item img {
      height: 80px;
    }

    .theme-item h4 {
      font-size: 1.2rem;
      margin-bottom: 0.3rem;
    }


/* Footer */

    footer {
      background-color: #ff6534; /* Same orange as your screenshot */
      color: white;
      text-align: center;
      padding: 80px 20px;
      position: relative;
    }

    footer h2 {
      margin: 0;
      font-size: 2rem;
      font-weight: bold;
    }

    footer p {
      margin: 5px 0;
      font-size: 1.5rem;
    }

    footer small {
      display: block;
      margin-top: 10px;
      font-size: 14px;
      opacity: 0.85;
    }

    footer::after {
      content: "";
      display: block;
      height: 4px;
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
    }


/**/

@media (max-width: 800px) {
    nav ul li {
        display: none;
    }

    .theme-item {
        width: 100%;
    }
}

@media (max-width: 705px) {
    .cta  {
       width: 100% !important; 
    }
}

@media (max-height: 790px) {
    .scroll-down {
        bottom: 10px;
    }
}