* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background-color: #f9f9f9;
    overflow-x: hidden;
}

/* Header & Navigation */
header {
    background-color: #2c3e50;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.container {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-width: 50px;
    height: auto;
    margin-right: 15px;
    transition: transform 0.3s;
}

.logo img:hover {
    transform: scale(1.05);
}

.logo h1 {
    color: white;
    font-size: 24px;
    font-weight: 600;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #3498db;
}

.cta-button {
    background-color: #3498db;
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #2980b9;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2c3e50 0%, #4a6583 100%);
    color: white;
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSgxMzUpIj48cmVjdCBpZD0icGF0dGVybi1ncmlkIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ0cmFuc3BhcmVudCI+PC9yZWN0PjxjaXJjbGUgY3g9IjIwIiBjeT0iMjAiIHI9IjEiIGZpbGwtb3BhY2l0eT0iMC4xNSIgZmlsbD0iI2ZmZmZmZiI+PC9jaXJjbGU+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI3BhdHRlcm4pIj48L3JlY3Q+PC9zdmc+') repeat;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 850px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 40px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.9;
}

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

.primary-button {
    background-color: #3498db;
    color: white;
    padding: 15px 35px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.primary-button:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.secondary-button {
    background-color: transparent;
    color: white;
    padding: 15px 35px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    border: 2px solid white;
}

.secondary-button:hover {
    background-color: rgba(255,255,255,0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Features Section */
.features {
    padding: 51px 0;
    background-color: #e8e8e8;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 18px;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background-color: white;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: scale(1.01);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-image {
    width: 100%;
    height: 75%;
    background-color: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    margin: 0px 0px 8px 0px;
    color: #2c3e50;
}

.feature-card p {
    color: #7f8c8d;
    line-height: 1.3;
}

/* Services Section */
.services {
    padding: 51px 0;
    background-color: #d7d7d7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.service-card:hover {

    transform: scale(1.01);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
}

.service-image {
    height: 251px;
    background-color: white;
    position: relative;
    overflow: hidden;
    align-content: center;
}

.service-image img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-card:hover .service-image img {
    transform: scale(1.00);
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-content p {
    color: #7f8c8d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.learn-more {
    display: inline-block;
    color: #3498db;
    font-weight: 500;
    text-decoration: none;
    position: relative;
}

.learn-more:after {
    content: '→';
    margin-left: 5px;
    transition: transform 0.3s;
    display: inline-block;
}

.learn-more:hover:after {
    transform: translateX(5px);
}

/* Testimonials Section */
.testimonials {
    padding: 51px 0;
    background-color: #2c3e50;
    color: white;
}

.testimonials .section-title h2 {
    color: white;
}

.testimonials .section-title p {
    color: rgba(255,255,255,0.7);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 30px;
    position: relative;
}

.testimonial-card:before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 60px;
    color: rgba(255,255,255,0.1);
    font-family: Georgia, serif;
}

.testimonial-content {
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #3498db;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.author-info h4 {
    margin-bottom: 5px;
}

.author-info p {
    opacity: 0.7;
    font-size: 14px;
}

/* About Section */
.about {
    padding: 51px 0;
    background-color: #f0f0f0;
}

.about-content {
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.8;
    text-align: justify;
}

.about-content h3 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.about-content p {
    margin-bottom: 20px;
    color: #555;
    font-size: 17px;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.mission h4, .vision h4 {
    color: #3498db;
    margin-bottom: 15px;
    font-size: 20px;
}

.separator {
    text-align: center;
    color: #7f8c8d;
    font-size: 24px;
    margin: 30px 0;
}

/* Contact Section */
.contact {
    padding: 51px 0;
    background-color: #e8e8e8;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

.contact-info {
    background-color: #2c3e50;
    color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #3498db;
}

.contact-item p {
    line-height: 1.6;
}

.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-form h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #3498db;
    outline: none;
}

.submit-button {
    background-color: #3498db;
    color: white;
    padding: 14px 25px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.submit-button:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
}

.privacy-note {
    margin-top: 20px;
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    padding: 51px 0;
    background-color: #d7d7d7;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-question h3 {
    font-size: 18px;
    color: #2c3e50;
    margin: 0;
}

.toggle-icon {
    font-size: 24px;
    color: #3498db;
    transition: transform 0.3s;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer p {
    padding: 0 0 20px;
    color: #7f8c8d;
    line-height: 1.6;
}

/* Privacy Section */
.privacy {
    padding: 51px 0;
    background-color: #f0f0f0;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    max-height: 600px;
    overflow: scroll;
    
}

.privacy-section {
    margin-bottom: 30px;
}

.privacy-section h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.privacy-section p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.privacy-section ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.privacy-section ul li {
    color: #555;
    line-height: 1.6;
    margin-bottom: 8px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: #3498db;
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

.cta-primary {
    background-color: white;
    color: #3498db;
    padding: 15px 35px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.cta-primary:hover {
    background-color: #f9f9f9;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cta-secondary {
    background-color: transparent;
    color: white;
    padding: 15px 35px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    border: 2px solid white;
}

.cta-secondary:hover {
    background-color: rgba(255,255,255,0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Footer */
footer {
    background-color: #1a2530;
    color: white;
    padding: 50px 0px 20px 0px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: #3498db;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 14px;
}

/* Animasi dan efek tambahan */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Responsif */
@media (max-width: 768px) {
    .hero {
        padding: 150px 0 80px;
    }
    
    .hero h1 {
        font-size: 46px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .navbar {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .nav-links li {
        margin-left: 0;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .about-content, .privacy-content {
        padding: 20px;
    }
    
    .contact-info, .contact-form {
        padding: 25px;
    }
}



/* Dark Theme Global Styles */
:root {
    /* Light Theme Variables */
    --body-bg: #f9f9f9;
    --text-color: #333;
    --card-bg: white;
    --section-bg-1: #e8e8e8;
    --section-bg-2: #d7d7d7;
    --section-bg-3: #f0f0f0;
    --heading-color: #2c3e50;
    --form-bg: white;
    --form-input-bg: white;
    --form-input-border: #ddd;
    --form-text: #555;
    --shadow: rgba(0, 0, 0, 0.1);
}

html.dark-theme {
    /* Dark Theme Variables */
    --body-bg: #1a1e24;
    --text-color: #ecf0f1;
    --card-bg: #2c3e50;
    --section-bg-1: #2a2e35;
    --section-bg-2: #252a31;
    --section-bg-3: #2a2e35;
    --heading-color: #3498db;
    --form-bg: #2c3e50;
    --form-input-bg: #34495e;
    --form-input-border: #486683;
    --form-text: #ecf0f1;
    --shadow: rgba(0, 0, 0, 0.3);
}

/* Global styles yang menggunakan variabel */
body {
    color: var(--text-color);
    background-color: var(--body-bg);
}

/* Sections Background */
.features {
    background-color: var(--section-bg-1);
}

.services {
    background-color: var(--section-bg-2);
}

.about {
    background-color: var(--section-bg-3);
}

.faq {
    background-color: var(--section-bg-2);
}

.privacy {
    background-color: var(--section-bg-3);
}

.contact {
    background-color: var(--section-bg-1);
}

/* Card Styles */
.feature-card, 
.service-card, 
.faq-item {
    background-color: var(--card-bg);
    box-shadow: 0 5px 15px var(--shadow);
}

.feature-card h3,
.service-card .service-content h3,
.faq-item .faq-question h3 {
    color: var(--heading-color);
}

.feature-card p,
.service-card .service-content p,
.faq-item .faq-answer p {
    color: var(--text-color);
}

/* Section Titles */
.section-title h2 {
    color: var(--heading-color);
}

.section-title p {
    color: var(--text-color);
    opacity: 0.8;
}

/* Contact Form */
.contact-form {
    background-color: var(--form-bg);
    box-shadow: 0 5px 15px var(--shadow);
}

.contact-form h3 {
    color: var(--heading-color);
}

.form-group label {
    color: var(--form-text);
}

.form-group input,
.form-group textarea {
    background-color: var(--form-input-bg);
    border-color: var(--form-input-border);
    color: var(--form-text);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #3498db;
}

/* Privacy Content */
.privacy-content {
    background-color: var(--card-bg);
    box-shadow: 0 5px 15px var(--shadow);
}

.privacy-content .privacy-section h3 {
    color: var(--heading-color);
}

.privacy-content .privacy-section p,
.privacy-content .privacy-section ul li {
    color: var(--text-color);
}

/* Mission Vision */
.mission-vision {
    background-color: var(--card-bg);
}

.mission h4, .vision h4 {
    color: #3498db;
}

.mission p, .vision p {
    color: var(--text-color);
}

/* FAQ Specific */
.faq-question:hover {
    background-color: var(--section-bg-3);
}

/* Adjust other text elements */
.about-content p,
.privacy-note {
    color: var(--text-color);
    opacity: 0.9;
}


/* Revisi Dark Mode untuk elemen spesifik */

/* 1. Membedakan latar belakang Privacy dan About */
:root {
    /* Light Theme Variables */
    --section-bg-3: #f0f0f0;    /* About section */
    --section-bg-4: #e5e5e5;    /* Privacy section - lebih gelap sedikit */
    --cta-bg: #3498db;          /* Warna biru cerah untuk light mode */
}

html.dark-theme {
    /* Dark Theme Variables */
    --section-bg-3: #2a2e35;    /* About section */
    --section-bg-4: #1f1f1f;    /* Privacy section - lebih gelap */
    --cta-bg: #2c3e50;          /* Warna biru gelap untuk dark mode */
}

/* Ubah background Privacy section */
.privacy {
    background-color: var(--section-bg-4);
}

/* 2. CTA Section yang lebih gelap di dark mode */
.cta-section {
    background-color: var(--cta-bg);
}

/* Tambahan untuk teks di CTA section */
html.dark-theme .cta-content h2,
html.dark-theme .cta-content p {
    color: #ecf0f1;
}

/* 3. Memperbaiki kontras judul About di dark mode */
.about-content h3 {
    color: var(--heading-color);
    /* Tambahan untuk memastikan kontras yang baik */
    font-weight: 600;
}

/* Khusus untuk dark mode, buat judul lebih kontras */
html.dark-theme .about-content h3 {
    color: #3498db;              /* Biru yang lebih cerah */
    text-shadow: 0 1px 2px rgba(0,0,0,0.3); /* Tambahkan shadow untuk kontras lebih baik */
}


/* CSS untuk Video Click to Zoom */
.feature-card {
    position: relative;
    z-index: 1;
    cursor: pointer; /* Menunjukkan bahwa card dapat diklik */
}

.feature-card.zoomed {
    z-index: 1000;
}

.services-image {
    position: relative;
    overflow: hidden;
}

.video-container {
    position: relative;
    width: 100%;
    transition: all 0.3s ease;
}

/* Overlay untuk background saat zoom */
.zoom-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 999;
    display: none;
    cursor: pointer; /* Menunjukkan bahwa overlay dapat diklik untuk menutup */
}

/* Style untuk video yang di-zoom */
.zoomed-video {
    position: fixed;
    z-index: 1001;
    width: 1024px; /* Lebar tetap 800px sesuai permintaan */
    max-width: 95vw; /* Agar responsif di layar kecil */
    height: auto; /* Tinggi menyesuaikan */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    display: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Posisi tengah layar */
    overflow: visible; /* Agar tombol close bisa keluar dari container */
}

/* Tambahkan indikator klik */
.services-image::after {
    content: '🔍';
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(0,0,0,0.6);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.feature-card:hover .services-image::after {
    opacity: 1;
}

/* Style untuk tombol close */
.close-button {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 30px;
    height: 30px;
    background-color: #ff3b30;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    border: 2px solid white;
    z-index: 1002;
    transition: all 0.2s ease;
}

.close-button:hover {
    background-color: #ff1a0e;
    transform: scale(1.1);
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 1100;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.4s;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        width: 30%;
        height: 100vh;
        background-color: #2c3e50;
        flex-direction: column;
        align-items: center;
        padding-top: 80px;
        transition: 0.5s;
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        font-size: 18px;
    }
    
    .cta-button {
        display: inline-block;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        /* Tambahkan backdrop filter untuk efek blur */
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
}