        /* --- STYLE.CSS (Digabungkan disini) --- */
        
        /* CSS Reset and Basic Setup */
        :root {
            --primary-green: #004d40; /* Hijau tua yang dalam */
            --secondary-green: #00695c;
            --accent-gold: #c5a560; /* Emas sebagai aksen mewah */
            --light-bg: #f8f9fa;
            --dark-text: #333333;
            --light-text: #ffffff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Lora', serif;
            line-height: 1.6;
            color: var(--dark-text);
            background-color: #e5e5e5; /* Latar belakang abu-abu muda */
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            color: var(--primary-green);
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: auto;
        }

        section {
            padding: 80px 0;
        }

        section:nth-of-type(odd) {
            background-color: var(--light-bg);
        }
        section:nth-of-type(even) {
            background-color: #ffffff;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            font-size: 2.5rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background-color: var(--accent-gold);
            margin: 10px auto 0;
            border-radius: 2px;
        }

        /* Header and Navigation */
        .header {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 15px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Poppins', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-green);
            text-decoration: none;
        }

        .nav-links {
            list-style: none;
            display: flex;
        }

        .nav-links li {
            margin-left: 25px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--secondary-green);
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 0.95rem;
            transition: color 0.3s ease;
            position: relative;
            padding-bottom: 5px;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent-gold);
            transition: width 0.3s ease;
        }

        .nav-links a:hover, .nav-links a.active {
            color: var(--primary-green);
        }
        
        .nav-links a:hover::after, .nav-links a.active::after {
            width: 100%;
        }
        
        /* Hamburger menu for mobile */
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .menu-toggle .bar {
            width: 25px;
            height: 3px;
            background-color: var(--primary-green);
            margin: 4px 0;
            transition: 0.3s;
        }

        /* Hero Section (Styling untuk halaman PPDB) */
        .hero-ppdb {
            padding-top: 150px; /* Memberi ruang di bawah header */
            background-image: url(img/backgorundpmb.png);
            background-position: center;
            background-size: cover;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: var(--light-text);
        }

        .hero-content {
            max-width: 800px;
        }

        .beranda-pmb h2 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: #06715f;
            font-weight: 700;
        }

        .beranda-pmb h5 {
            color: #000;
            font-size: 1.2rem;
            margin-bottom: 30px;
            font-family: 'Poppins', sans-serif;
            opacity: 0.9;
        }

        .beranda-pmb {
            padding-top: 150px;
            background-color: #063b1e;
            background-position: center;
            background-size: cover;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: var(--light-text);
        }

        .btn {
            padding: 12px 30px;
            background-color: rgb(255, 221, 0);
            color: var(--primary-green);
            text-decoration: none;
            border-radius: 50px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            display: inline-block;
        }

        .btn:hover {
            background-color: transparent;
            border: 2px solid var(--accent-gold);
            color: var(--accent-gold);
        }
        
        /* Tombol sekunder (misal: untuk brosur) */
        .btn-secondary {
            background-color: whitesmoke;
            border: 2px solid rgba(255, 255, 255, 0.8);
            color: var(--primary-green);
            margin-left: 15px;
        }
        .btn-secondary:hover {
            background-color: white;
            color: var(--primary-green);
            border-color: white;
        }

        /* --- Card Styling (dari style.css) --- */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .card {
            background: #e3e3e3;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            overflow: hidden;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }

        .card-img {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }
        
        .card-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        /* Perbaikan untuk judul kartu */
        .card-content h1,
        .card-content h2,
        .card-content h3 {
            font-size: 1.3rem;
            margin-bottom: 12px;
            color: var(--primary-green);
        }
        
        .card-content p {
            font-size: 0.95rem;
            color: #666;
            flex-grow: 1;
        }

        /* --- Styling Khusus Halaman PPDB --- */
        
        /* Bagian Alur Pendaftaran */
        .timeline-card {
            text-align: left;
            position: relative;
            padding-left: 60px; /* Ruang untuk nomor */
        }
        
        .timeline-card .step-number {
            position: absolute;
            left: 20px;
            top: 25px;
            width: 35px;
            height: 35px;
            background-color: #ffdd00;
            color: var(--primary-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-family: 'Poppins', sans-serif;
            font-size: 1.2rem;
        }
        
        .timeline-card .card-content {
            padding: 25px 25px 25px 0;
            text-align: left;
        }
        
        .timeline-card h3 {
             margin-top: 5px; /* Sejajarkan dengan nomor */
        }

        /* Bagian Syarat Pendaftaran (reuse .profile-content) */
        .syarat-content {
            display: flex;
            align-items: flex-start;
            gap: 50px;
        }

        .syarat-image {
            flex: 1;
        }

        .syarat-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        .syarat-text {
            flex: 1.5;
        }
        
        .syarat-text h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
        }

        .syarat-text ul {
            list-style: none; /* Hilangkan bullet point default */
            padding-left: 0;
        }

        .syarat-text li {
            position: relative;
            padding-left: 35px; /* Ruang untuk ikon cek */
            margin-bottom: 15px;
            font-size: 1.05rem;
        }
        
        /* Membuat ikon cek kustom */
        .syarat-text li::before {
            content: '✔';
            position: absolute;
            left: 0;
            top: 0;
            color: var(--secondary-green);
            font-weight: bold;
            font-size: 1.2rem;
        }

        /* Bagian Kontak PPDB */
        #kontak-ppdb {
            text-align: center;
        }
        .narahubung-wrapper {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 40px;
        }
        .narahubung-card {
            background: #fff;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.07);
            min-width: 300px;
        }
        .narahubung-card h3 {
            font-size: 1.5rem;
            color: var(--primary-green);
            margin-bottom: 10px;
        }
        .narahubung-card p {
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 20px;
        }
        /* Menggunakan .btn style untuk tombol kontak */
        .narahubung-card .btn {
            background-color: var(--secondary-green);
            color: white;
            border-color: var(--secondary-green);
        }
        .narahubung-card .btn:hover {
            background-color: transparent;
            color: var(--secondary-green);
        }


        /* Footer (dari style.css) */
        .footer {
            background-color: var(--primary-green);
            color: var(--light-text);
            padding: 60px 0 30px;
            text-align: center;
        }

        .footer .logo {
            color: var(--accent-gold);
            font-size: 2.2rem;
            display: block;
            margin-bottom: 20px;
        }

        .footer p {
            margin: 0 auto 30px;
            max-width: 600px;
            opacity: 0.9;
        }

        .social-links {
            margin-bottom: 40px;
        }

        .social-links a {
            color: var(--light-text);
            margin: 0 15px;
            display: inline-flex;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            justify-content: center;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background-color: var(--accent-gold);
            color: var(--primary-green);
            transform: translateY(-3px);
        }

        .footer-bottom {
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            opacity: 0.7;
        }
        
        /* --- Responsive Design (dari style.css) --- */
        @media (max-width: 992px) {
            .hero-ppdb h1 { font-size: 3rem; }
            .section-title { font-size: 2.2rem; }
            
            .syarat-content {
                flex-direction: column;
            }
            .syarat-image {
                max-width: 400px;
                margin: 0 auto 30px auto;
            }
        }

        @media (max-width: 768px) {
            .header {
                padding: 10px 0; /* Sedikit padding agar tidak terlalu mepet */
            }
            .logo {
                font-size: 1.4rem;
            }
            .nav-links {
                position: absolute;
                top: 65px; /* Disesuaikan dengan tinggi header baru */
                right: 0;
                background-color: #fff;
                width: 100%;
                flex-direction: column;
                text-align: center;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                box-shadow: 0 10px 20px rgba(0,0,0,0.05);
            }
            .nav-links.active {
                max-height: 400px;
            }
            .nav-links li {
                margin: 0;
            }
            .nav-links a {
                display: block;
                padding: 15px 0;
                border-bottom: 1px solid #f5f5f5;
            }
            .nav-links a::after {
                display: none; /* Hilangkan garis bawah hover di mobile */
            }

            .menu-toggle {
                display: flex;
            }
            
            .hero-ppdb {
                 padding-top: 120px;
            }
            .hero-ppdb h1 {
                font-size: 2.5rem;
            }
            
            section {
                padding: 60px 0;
            }
        }
        
        @media (max-width: 480px) {
             .hero-ppdb h1 {
                font-size: 2rem;
            }
            .hero-ppdb p {
                font-size: 1rem;
            }
            .btn {
                padding: 10px 25px;
                font-size: 0.9rem;
            }
            .hero-content .btn {
                 margin-bottom: 10px;
            }

            .section-title {
                font-size: 1.8rem;
            }
            
            /* Perbaikan kartu untuk mobile */
            .card-grid {
                gap: 20px;
            }
            .card-img {
                height: 180px;
            }
            .card-content {
                padding: 20px;
            }
            .card-content h1,
            .card-content h2,
            .card-content h3 {
                font-size: 1.15rem;
            }

            .timeline-card {
                padding-left: 0;
                text-align: center;
            }
            .timeline-card .step-number {
                position: static;
                margin: 0 auto 15px auto;
            }
            .timeline-card .card-content {
                padding: 0 15px 15px 15px;
                text-align: center;
            }
            .timeline-card h3 {
                 margin-top: 0;
            }
            
            .syarat-text li {
                font-size: 1rem;
            }
        }
        
        /* --- STYLE TAMBAHAN UNTUK MODAL PPDB --- */

/* Latar belakang gelap di belakang modal */
.modal {
    display: none; /* Hidden by default */
    position: fixed; 
    z-index: 2000; /* Di atas segalanya (header z-index 1000) */
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.6); 
    backdrop-filter: blur(5px);
    animation: fadeIn 0.4s;
}

/* Kotak konten modal */
.modal-content {
    background-color: #fefefe;
    margin: 5% auto; 
    padding: 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 700px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    position: relative;
    animation: slideIn 0.4s;
}

/* Tombol Close (X) */
.close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-btn:hover {
    color: var(--primary-green);
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: 20px;
}

/* Layout Form dalam Modal */
.ppdb-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-green);
}

.ppdb-form .form-row {
    display: flex;
    gap: 20px;
}

.ppdb-form .half {
    flex: 1;
}

/* Animasi */
@keyframes slideIn {
    from {transform: translateY(-50px); opacity: 0;}
    to {transform: translateY(0); opacity: 1;}
}

/* Responsif untuk Modal */
@media (max-width: 600px) {
    .modal-content {
        margin: 10% auto;
        padding: 20px;
        width: 95%;
    }
    .ppdb-form .form-row {
        flex-direction: column;
        gap: 0;
    }
}

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent-gold);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }

        .btn-submit {
            padding: 15px 40px;
            background-color: var(--primary-green);
            color: white;
            border: none;
            cursor: pointer;
            border-radius: 50px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 77, 64, 0.3);
        }

        .btn-submit:hover {
            background-color: var(--secondary-green);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 77, 64, 0.4);
        }