    * {
        font-family: 'Cabin', sans-serif;
    }

    .hero {
        position: relative;
        width: 100%;
        height: 650px;
        background: url("/images/hero.png") center/cover no-repeat;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-family: 'archivo black', sans-serif;
    }

    .hero-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        -webkit-backdrop-filter: brightness(0.8);
        backdrop-filter: brightness(0.8);
    }

    .hero-content {
        position: relative;
        color: white;
        max-width: 900px;
        padding: 20px;
    }

    .hero h1 {
        font-family: 'Archivo Black', sans-serif;
        font-size: 64px;
        line-height: 1.2;
        margin-bottom: 40px;
    }

    .hero p {
        font-size: 20px;
        margin-bottom: 30px;
        font-weight: 400;
    }

    .hero-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .btn-primary {
        background: #005F02;
        color: white;
        border: white 2px solid;
        padding: 14px 28px;
        border-radius: 12px;
        text-decoration: none;
        font-weight: 700;
        transition: 0.3s ease;
    }

    .btn-primary:hover {
        background: #4ca94d;
        color: white;
        border: white 2px solid;
        transform: translateY(-3px);
    }

    .btn-secondary {
        background: white;
        color: #005F02;
        border: #005F02 2px solid;
        padding: 14px 28px;
        border-radius: 12px;
        text-decoration: none;
        font-weight: 700;
        transition: 0.3s ease;
    }

    .btn-secondary:hover {
        background: #4ca94d;
        color: white;
        border: white 2px solid;
        transform: translateY(-3px);
    }

    .about-section {
        background: #eef3ec;
        padding: 60px 0;
        font-family: 'Cabin', sans-serif;
    }

    .about-container {
        width: 1200px;
        max-width: 90%;
        margin: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 60px;
    }

    .about-text {
        flex: 1;
    }

    .about-text h2 {
        font-size: 48px;
        color: #005F02;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .about-text .line {
        width: 80px;
        height: 3px;
        background: #333;
        margin-bottom: 30px;
    }

    .about-text p {
        font-size: 20px;
        line-height: 1.8;
        color: #333;
    }

    .about-image img {
        width: 510px;
        height: 567px;
        object-fit: cover;
        border-radius: 20px;
    }

    .about-link {
        margin-top: 60px;
    }

    .about-link a {
        color: #0d4f14;
        text-decoration: none;
        font-weight: 500;
    }

    .about-link a:hover {
        text-decoration: underline;
    }

    .program-section {
        background: #f4f4f4;
        padding: 70px 0;
        font-family: 'Cabin', sans-serif;
        text-align: center;
    }

    .program-container {
        width: 1200px;
        max-width: 90%;
        margin: auto;
    }

    .program-title {
        font-size: 48px;
        color: #005F02;
        margin-bottom: 80px;
        font-weight: 700;
    }

    .program-cards {
        display: flex;
        justify-content: space-between;
        gap: 40px;
    }

    .program-card {
        background: #e9e9e9;
        padding: 50px 35px;
        border-radius: 25px;
        flex: 1;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        transition: 0.4s ease;
    }

    .program-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
    }

    .program-card h3 {
        font-size: 28px;
        color: #2e6b37;
        margin-bottom: 25px;
        font-weight: 700;
    }

    .program-card p {
        font-size: 18px;
        line-height: 1.8;
        color: #333;
    }

    .card-line {
        width: 80%;
        height: 2px;
        background: #2e6b37;
        margin: 30px auto 0;
    }

    .fasilitas-section {
        background: #dfe8d8;
        padding: 100px 0;
        font-family: 'Cabin', sans-serif;
    }

    .fasilitas-container {
        width: 1200px;
        max-width: 90%;
        margin: auto;
        text-align: center;
    }

    .fasilitas-title {
        font-size: 48px;
        font-weight: 700;
        color: #0d4f14;
        margin-bottom: 70px;
    }

    .fasilitas-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 50px 40px;
    }

    .fasilitas-card {
        background: #f2f2f2;
        padding: 25px;
        border-radius: 20px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        transition: 0.4s ease;
    }

    .fasilitas-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
    }

    .fasilitas-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        border-radius: 15px;
        margin-bottom: 20px;
    }

    .fasilitas-card h3 {
        font-size: 20px;
        font-weight: 600;
        color: #ffffff;
    }

    .fasilitas-link {
        margin-top: 60px;
    }

    .fasilitas-link a {
        color: #0d4f14;
        text-decoration: none;
        font-weight: 500;
    }

    .fasilitas-link a:hover {
        text-decoration: underline;
    }


    .galeri {
        background: #f3f3f3;
        padding: 120px 0;
    }

    .container-galeri {
        width: 1200px;
        max-width: 90%;
        margin: auto;
        text-align: center;
    }

    .galeri-title {
        font-size: 52px;
        font-weight: 700;
        color: #0d4f14;
        margin-bottom: 80px;
    }

    /* Wrapper */
    .galeri-wrapper {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Carousel */
    .galeri-carousel {
        position: relative;
        width: 900px;
        height: 520px;
    }

    /* Card */
    .galeri-card {
        position: absolute;
        width: 420px;
        height: 500px;
        border-radius: 30px;
        overflow: hidden;
        transition: all 0.6s cubic-bezier(.77, 0, .18, 1);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
        opacity: 0;
    }

    .galeri-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* ACTIVE (TENGAH) */
    .galeri-card.active {
        left: 50%;
        transform: translateX(-50%) scale(1);
        z-index: 5;
        opacity: 1;
        filter: grayscale(0%);
    }

    /* KIRI */
    .galeri-card.prev {
        left: 20%;
        transform: translateX(-50%) scale(0.85);
        z-index: 3;
        opacity: 0.6;
        filter: grayscale(100%);
    }

    /* KANAN */
    .galeri-card.next {
        left: 80%;
        transform: translateX(-50%) scale(0.85);
        z-index: 3;
        opacity: 0.6;
        filter: grayscale(100%);
    }

    /* BUTTON */
    .galeri-btn {
        position: absolute;
        background: #8cbf73;
        border: none;
        color: white;
        width: 50px;
        height: 50px;
        border-radius: 14px;
        cursor: pointer;
        font-size: 20px;
        z-index: 10;
    }

    .btn-prev {
        left: -90px;
    }

    .btn-next {
        right: -90px;
    }

    .galeri-link {
        margin-top: 60px;
    }

    .galeri-link a {
        color: #0d4f14;
        text-decoration: none;
        font-weight: 500;
    }

    .galeri-link a:hover {
        text-decoration: underline;
    }

    .cta-pendaftaran {
        min-height: 100vh;
        display: flex;
        align-items: center;
        background: linear-gradient(180deg,
                #f2f4ef 0%,
                #dbe6d4 30%,
                #b7d3a8 60%,
                #8ebf73 100%);
    }

    .cta-container {
        width: 1200px;
        max-width: 90%;
        margin: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 80px;
    }

    /* LEFT */
    .cta-left {
        text-align: center;
    }

    .cta-left img {
        width: 380px;
    }

    .cta-left h3 {
        font-size: 48px;
        margin-top: 20px;
        letter-spacing: 8px;
        color: #2d2d2d;
    }

    /* RIGHT */
    .cta-right {
        max-width: 550px;
    }

    .cta-right h2 {
        font-size: 44px;
        font-weight: 700;
        color: #0f4d1c;
        margin-bottom: 20px;
    }

    .cta-right p {
        font-size: 20px;
        line-height: 1.6;
        color: #333;
        margin-bottom: 40px;
    }

    .cta-buttons {
        display: flex;
        gap: 20px;
    }

    .cta-primary {
        background: #005F02;
        color: white;
        border: white 2px solid;
        padding: 14px 50px;
        border-radius: 12px;
        text-decoration: none;
        font-weight: 700;
        transition: 0.3s ease;
    }

    .cta-primary:hover {
        background: #4ca94d;
        color: white;
        border: white 2px solid;
        transform: translateY(-3px);
    }