    /* ————————————
       RESET & BASE
    ———————————— */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      font-family: 'Georgia', serif;
      color: #0F2F1F;
      line-height: 1.6;
      background: #FFF;
    }
    img { display: block; max-width: 100%; height: auto; }

    a { text-decoration: none; color: inherit; }

    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }
    
    #menu1 .container{
      max-width: 90%!important;
    }
    /* ————————————
       HERO
    ———————————— */
    .hero {
      display: flex;
      align-items: center;
      gap: 48px;
      padding: 80px 0;
    }
    .hero__text {
      flex: 1;
    }
    .hero__title {
      font-size: 40px;
      font-weight: 700;
      margin-bottom: 24px;
    }
    .hero__p {
      font-size: 18px;
      color:#308A61!important;
      margin-bottom: 32px;
      
    }
    .hero__list {
      list-style: none;
    }
    .hero__list-item {
      display: flex;
      margin-bottom: 16px;
      border-top: 1px solid #E6E6E6;
    padding-top: 25px;
    }
    .hero__list-item p{
        font-family: 'Quattrocento';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #03261F;
    }
    .hero__list-item:last-child { margin-bottom: 0; }
    .hero__number {
      color: #10B981;
      font-weight: 700;
      width: 36px;
      font-size: 16px;
      margin-right: 16px;
    }
    .hero__image {
      position: relative;
      flex: 1;
      border-radius: 24px;
      overflow: hidden;
      min-height: 360px;
    }
    .hero__image img { width: 100%; height: 100%; object-fit: cover; }
    .carousel-nav {
      position: absolute;
      top: 16px; right: 16px;
      display: flex; gap: 8px;
    }
    .carousel-nav button {
      background: #CCFFA5;
      border: none;
      width: 40px; height: 40px;
      border-radius: 50%;
      font-size: 20px; cursor: pointer;
    }

    /* ————————————
       DETAILS
    ———————————— */
    .details {
      padding: 80px 0;
      text-align: center;
    }
    .details__heading {
      font-size: 36px;
      font-weight: 700;
      margin-bottom: 16px;
    }
    .details__sub {
      font-size: 16px;
      color: #03261F;
      margin-bottom: 32px;
          width: 60%;
    margin: 0 auto;
    }
    .meta {
      display: flex;
      justify-content: center;
      gap: 32px;
      margin-bottom: 48px;
    }
    .meta__item {
      display: flex;
      align-items: center;
      font-size: 16px;
      color: #17593B;
    }
    .meta__icon {
      display: inline-block;
      margin-right: 8px;
      font-size: 16px;
      color: #10B981;
    }

    /* small gallery */
    .small-gallery {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 24px;
      margin-bottom: 64px;
    }
    .small-gallery__img {
      width: 100%; height: 320px;
      object-fit: cover;
      border-radius: 16px;
    }

    /* week & accordion */
    .week-accordion {
      display: flex;
      gap: 48px;
      margin-bottom: 64px;
    }
    .weeks {
      flex: 1;
    }
    .weeks__week {
      margin-bottom: 40px;
      text-align: left;
    }
    .weeks__title {
     margin-bottom: 16px;
    font-weight: 700;
    font-size: 32px;
    line-height: 35px;
    color: #308A61;
    }
    .weeks__desc {
      font-size: 16px;
      color: #374151;
      line-height: 1.6;
    }
    .accordion {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .accordion__item {
      background: #E5F0EB;
      border-radius: 24px;
      overflow: hidden;
    }
    .accordion__header {
      width: 100%;
      padding: 20px 0px 0px 24px;
      background: none;
      border: none;
      text-align: left;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      position: relative;
      color:#17593B;
    }
    .accordion__header::after {
      content: '▾';
      position: absolute;
      right: 24px; top: 75%;
      transform: translateY(-50%);
      transition: transform .2s;
    }
    .accordion__header.active::after {
      transform: translateY(-50%) rotate(-180deg);
    }
    .accordion__body {
      display: none;
      padding: 0 24px 16px;
      font-size: 15px;
      color: #374151;
      line-height: 1.6;
      text-align: left;
    }
    .accordion__header.active + .accordion__body {
      display: block;
    }

    /* buttons */
    .actions {
      display: flex;
      justify-content: center;
      gap: 16px;
      margin-top: 40px;
    }
    .btn {
      padding: 12px 32px;
      border-radius: 24px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
    }
    .btn--enrol { background: #B497DB; color: #FFF; }
    .btn--timetable { background: #CCFFA5; color: #053D30; }

    /* ————————————
       STORIES
    ———————————— */
    .stories {
      padding: 80px 0;
      text-align: center;
    }
    .stories__heading {
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 8px;
    }
    .stories__sub {
      font-size: 16px;
      color: #374151;
      margin-bottom: 40px;
    }
    .stories__grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-bottom: 64px;
    }
    .stories__item {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
    }
    .stories__item img {
      width: 100%; height: 240px;
      object-fit: cover;
    }
    .stories__play {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      font-size: 48px;
      color: rgba(255,255,255,0.9);
      cursor: pointer;
    }

    /* ————————————
       ACTIVITIES
    ———————————— */
    .activities {
      /* padding: 80px 0; */
      text-align: center;
    }
    .activities__heading {
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 8px;
    }
    .activities__sub {
      font-size: 16px;
      color: #17593B;
      margin-bottom: 40px;
      margin-top: 20px;
    }
    .activities__grid {
      margin-bottom: 40px;
    }
    .activities__grid img {
      width: 100%;
      object-fit: cover;
      border-radius: 12px;
    }
    .activities__btn {
      background: #B497DB;
      color: #FFF;
      padding: 10px 24px;
      border-radius: 24px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
    }
    .activities__btn :hover {
      background: #9A7BC2;
      text-decoration: none;
      color:white;
    }

    /* ————————————
       EXPERTS
    ———————————— */
    .experts {
      padding: 80px 0;
    }
    .experts__intro {
         margin-bottom: 64px;
    }
    .experts__wrap {
        display: flex;
        gap: 48px;
    }
    .experts__text {
        flex: 1;
    }
    .experts__heading {
    font-weight: 400;
    font-size: 18px;
    color: #03261F;
    }
    .experts__desc {
    font-weight: 700;
    font-size: 26px;
    line-height: 35px;
    color: #308A61;
    }
    .experts__media {
        flex: 1;
    }
    .experts__media p{
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #03261F;
    }
    .experts__media img {
        width: 100%;
        border-radius: 24px;
        display: block;
    }
    .experts__grid {
      display: grid;
      grid-template-columns: repeat(4,1fr);
      gap: 24px;
      text-align: center;
    }
    .expert {
      display: flex; flex-direction: column; align-items: left;
    }
    .expert__img {
          width: 100%;
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 12px;
    }
    .expert__name {
      font-size: 16px; font-weight: 600; color: #308A61;
      margin-bottom: 4px;
      text-align: left;
    }
    .expert__role {
         font-size: 14px;
    color: #03261F;
    text-align: left;
    font-weight: 700;
    color: #03261F;
    }

    /* ————————————
       EXPLORE
    ———————————— */
    .explore {
      background: #CCFFA5;
      padding: 80px 0;
      text-align: center;
    }
    .explore__heading {
      font-size: 32px; font-weight: 700; margin-bottom: 16px;
    }
    .explore__sub { font-size: 16px; color: #374151; margin-bottom: 32px; }
    .explore__btn { @extend .activities__btn; }

    /* ————————————
       ALUMNI
    ———————————— */
    .alumni {
      padding: 80px 0;
      text-align: center;
    }
    .alumni__heading {
      font-size: 32px; font-weight: 700; margin-bottom: 8px;
    }
    .alumni__sub { font-size: 16px; color: #374151; margin-bottom: 32px; }
    .alumni__carousel {
      position: relative;
      display: flex;
      gap: 24px;
      overflow: hidden;
      margin-bottom: 40px;
    }
    .alumni__item {
      background: #EAF0EB;
      border-radius: 16px;
      padding: 24px;
      flex: 0 0 280px;
      display: flex; flex-direction: column;
      gap: 16px;
    }
    .alumni__quote {
      font-style: italic;
      color: #0F2F1F;
      flex: 1;
    }
    .alumni__author {
      font-weight: 700; font-size: 14px; color: #0F2F1F;
      text-align: right;
    }
    .alumni-nav {
      position: absolute;
      top: 50%; right: 0;
      transform: translateY(-50%);
      display: flex; flex-direction: column; gap: 8px;
    }
    .alumni-nav button {
      background: #CCFFA5;
      border: none;
      width: 32px; height: 32px;
      border-radius: 50%;
      cursor: pointer;
    }


    .inner-programme-area {
    background: #B8D6C7;
    padding: 70px 0 70px;
    text-align: center;
    color: #03261F;
    position: relative;
    margin-bottom: 50px;
}
.inner-programme-area h2{
        font-family: 'Quattrocento';
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 53px;
    text-align: center;
    color: #03261F;
}
.inner-programme-area .sub{
        font-size: 16px;
    color: #374151;
    margin: 25px;
}
    /* ————————————
       BROCHURE
    ———————————— */
    .brochure {
      padding: 80px 0;
      text-align: center;
    }
    .brochure__heading {
      font-size: 32px; font-weight: 700; margin-bottom: 16px;
    }
    .brochure__sub {
      font-size: 16px; color: #374151; margin-bottom: 32px;
    }
    .brochure__btn {
      background: #B497DB;
      color: #FFF;
      padding: 12px 32px;
      border-radius: 24px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
    }

    /* ————————————
       FOOTER
    ———————————— */
    .footer {
      background: #0F2F1F;
      color: #FFF;
      padding: 48px 0 24px;
      font-size: 14px;
    }
    .footer .container {
      display: flex;
      flex-wrap: wrap;
      gap: 48px;
      justify-content: space-between;
    }
    .footer__col {
      flex: 1;
      min-width: 200px;
    }
    .footer__title {
      font-weight: 700; margin-bottom: 16px;
    }
    .footer a {
      color: #CCC; display: block; margin-bottom: 8px;
    }
    .footer input {
      padding: 8px 12px; border-radius: 4px; border: none;
      margin-right: 8px;
      width: calc(100% - 100px);
    }
    .footer button {
      padding: 8px 16px; border: none; border-radius: 4px;
      background: #CCFFA5; cursor: pointer;
      color: #0F2F1F; font-weight: 600;
    }
.sub-title{
        font-family: 'Quattrocento';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    color: #03261F;
    margin-top: 20px;
}
    /* RESPONSIVE */
    @media (max-width: 992px) {
      .hero, .week-accordion, .experts__wrap {flex-direction: column;}
      .hero__title{text-align: center!important;}
      .small-gallery { grid-template-columns: 1fr 1fr; }
      .stories__grid { grid-template-columns: 1fr; }
      .activities__grid { grid-template-columns: repeat(3,1fr); }
      .experts__grid { grid-template-columns: repeat(1,1fr); }
      .meta{display:block!important;    text-align: left;}
      .stories__item iframe{width:100%!important; height:200px!important}
      .activities{padding:0!important}
      .experts__heading{font-size: 35px!important;}
      .experts__desc{font-size: 23px!important; text-align: justify!important;}
      .experts__media{text-align: justify!important;}
      .expert__name{text-align: center!important; margin-top: 20px!important}
      .expert__role{text-align: center!important;}
      .inner-programme-area{padding: 70px 0 70px!important}
      .inner-programme-area h2{width: 80%!important; margin:0 auto!important}
      .programme-alumni-title{width:100%!important;margin-bottom: 80px!important;text-align: center;}
      .programme-alumni-nav{top:295px!important; right:35%!important}
    }
    @media (max-width: 600px) {
      .small-gallery, .activities__grid { grid-template-columns: 1fr; }
      .footer .container { flex-direction: column; }
    }