* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            }
            :root {
            --primary-color-1: #1D5D85;
            --primary-color-2: #1484C7;
            --accent-color: #ECB21F;
            --light-accent-color: #FFD352;
            --secondary-color-1: #08494D;
            --secondary-color-2: #2C7B80;
            --secondary-color-3: #20333D;
            --text-color: #20333D;
            --light-text-color: #FFFFFF;
            --background-color: #FFFFFF;
            --light-background-color: #F5F5F5;
            --header-text-color: #FFFFFF;
            --header-subtitle-color: rgba(255, 255, 255, 0.9);
            --overlay-opacity: 0.85;
            --header-height: 0px; /* Akan diatur oleh JavaScript */
            }
            body {
            font-family: 'Open Sans', sans-serif;
            background-color: var(--background-color);
            color: var(--text-color);
            line-height: 1.6;
            }
            h1, h2, h3 {
            font-family: 'Montserrat', sans-serif;
            }
            .section {
            padding: 0;
            margin: 0;
            }
            
            /* Fasilitas Header */
            .facilities-header {
            position: relative;
            width: 100%;
            min-height: 420px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            text-align: center;
            overflow: hidden;
            padding: 150px 1rem 2rem!important;
            margin-top: calc(-1 * var(--header-height))!important;
            }
            
            .facilities-header-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            z-index: 1;
            transition: filter 0.3s ease, opacity 0.3s ease;
            min-width: 100%;
            min-height: 100%;
            transform: scale(1.1); /* Diperbesar sedikit untuk memastikan tidak ada celah */
            }
            
            .facilities-header-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(29, 93, 133, var(--overlay-opacity)) 0%, rgba(20, 132, 199, calc(var(--overlay-opacity) - 0.1)) 100%);
            z-index: 2;
            transition: all 0.3s ease;
            }
            
            .facilities-header-content {
            position: relative;
            z-index: 3;
            max-width: 800px;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center!important;
            padding: 0!important;
            margin-top: 80px!important;
            }
            
            .facilities-header-title {
            font-size: 2.5rem;
            color: var(--header-text-color);
            margin-bottom: 1.5rem!important;
            font-weight: 700;
            position: relative;
            top: 0px;
            }
            
            /* Garis bawah kuning untuk judul header */
            .facilities-header-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--accent-color);
            border-radius: 2px;
            }
            
            .facilities-header-subtitle {
            font-size: 1.2rem;
            color: var(--header-subtitle-color);
            max-width: 700px;
            margin: 0 auto 1.5rem;
            }
            
            .facilities-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 1rem;
            }
            
            .cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            padding: 2rem 1rem;
            max-width: 1200px;
            margin: auto;
            }
            
            .card {
            background-color: var(--background-color);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            transform: translateY(0);
            position: relative;
            z-index: 1;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
            }
            
            .card.visible {
            opacity: 1;
            transform: translateY(0);
            }
            
            .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
            }
            
            .card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            transition: all 0.5s ease;
            }
            
            .card:hover img {
            transform: scale(1.05);
            }
            
            .card-content {
            padding: 1.5rem;
            }
            
            .card h3 {
            font-size: 1.4rem;
            margin-bottom: 0.75rem;
            color: var(--secondary-color-3);
            transition: color 0.3s ease;
            }
            
            .card:hover h3 {
            color: var(--accent-color);
            }
            
            .card p {
            font-size: 0.95rem;
            color: #333;
            margin-bottom: 1.25rem;
            }
            
            /* CTA Section */
            .cta-section {
            background: linear-gradient(135deg, var(--primary-color-1) 0%, var(--primary-color-2) 100%);
            padding: 80px 20px;
            text-align: center;
            color: #FFFFFF; /* Langsung putih pekat */
            position: relative;
            overflow: hidden;
            }
            
            .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.3;
            z-index: 1;
            }

            .cta-container {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
            }

            .cta-title {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
            color: #FFFFFF; /* Tambahkan putih pekat */
            text-shadow: 0 2px 4px rgba(0,0,0,0.2); /* Bayangan biar lebih kontras */
            white-space: nowrap; /* Tambahkan ini agar teks tidak pecah baris */
            }
            
            .cta-subtitle {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            color: #FFFFFF; /* Putih pekat tanpa opacity */
            text-shadow: 0 1px 2px rgba(0,0,0,0.2); /* Bayangan halus */
            }
            
            .cta-button {
            display: inline-block;
            background-color: var(--accent-color);
            color: var(--secondary-color-3); /* Tetap gelap biar kontras dengan bg kuning */
            font-size: 1.2rem;
            font-weight: 700;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            margin-bottom: 2.5rem;
            }
            
            .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
            color: var(--secondary-color-3);
            }
            
            .cta-button:active {
            transform: translateY(-2px);
            }
            
            /* Responsive Design */
            @media (max-width: 992px) {
            .facilities-header-title {
                font-size: 2.5rem;
                top: 30px;
                margin-bottom: 1.8rem;
            }
            .facilities-header-title::after {
                bottom: -18px;
            }
            .facilities-header-subtitle {
                margin-top: 0.8rem;
            }
            .cards {
                grid-template-columns: repeat(2, 1fr);
            }
            .cta-title {
                font-size: 2.2rem;
            }
            .cta-subtitle {
                font-size: 1.1rem;
                }
            }
            
            @media (max-width: 768px) {
            .facilities-header {
                min-height: 400px;
                padding: 140px 1rem 1.5rem;
            }
            .facilities-header-title {
                font-size: 2.2rem;
                margin-bottom: 2rem;
                top: 20px;
            }
            .facilities-header-title::after {
                bottom: -15px;
            }
            .facilities-header-subtitle {
                font-size: 1rem;
                margin-bottom: 0.3rem;
            }
            .facilities-container {
                padding-top: 1.5rem;
            }
            .cta-section {
                padding: 60px 20px;
            }
            .cta-title {
                font-size: 2rem;
            }
            .cta-subtitle {
                font-size: 1rem;
            }
            .cta-button {
                font-size: 1.1rem;
                padding: 12px 30px;
            }
            }
            
            @media (max-width: 576px) {
            .facilities-header {
                min-height: 380px;
                padding: 130px 0.5rem 1rem;
            }
            .facilities-header-title {
                font-size: 2rem;
                margin-bottom: 0.6rem;
                top: 10px;
            }
            
            .facilities-header-title::after {
                bottom: -10px;
            }
            .facilities-header-subtitle {
                font-size: 0.95rem;
                margin-bottom: 0.2rem;
            }
            .cards {
                grid-template-columns: 1fr;
            }
                .cta-title {
                font-size: 1.8rem;
            }
            .cta-subtitle {
                font-size: 0.95rem;
                }
            }
            
            @media (max-width: 400px) {
            .facilities-header {
                min-height: 360px;
                padding: 120px 0.5rem 0.8rem;
            }
            .facilities-header-title {
                font-size: 1.8rem;
                margin-bottom: 0.5rem;
                top: 0;
            }
            .facilities-header-title::after {
                bottom: -8px;
            }
            .facilities-header-subtitle {
                font-size: 0.9rem;
                margin-bottom: 0.1rem;
            }
            .facilities-container {
                padding: 1rem 0.5rem;
            }
            .cta-section {
                padding: 50px 15px;
            }
            .cta-title {
                font-size: 1.6rem;
            }
            .cta-button {
                font-size: 1rem;
                padding: 10px 25px;
            }
            }
            
            /* Dark Mode Support */
            @media (prefers-color-scheme: dark) {
            :root {
                --primary-color-1: #0a3b5c;
                --primary-color-2: #0e5a9e;
                --accent-color: #d4a520;
                --light-accent-color: #ffd352;
                --secondary-color-1: #063235;
                --secondary-color-2: #1a5a6e;
                --secondary-color-3: #2c3e50;
                --text-color: #e0e0e0;
                --light-text-color: #ffffff;
                --background-color: #121212;
                --light-background-color: #1e1e1e;
                --header-text-color: #FFFFFF;
                --header-subtitle-color: rgba(255, 255, 255, 0.9);
                --overlay-opacity: 0.75;
            }
            body {
                background-color: var(--background-color);
            }
            .card,
            .card-content {
                background-color: var(--light-background-color);
            }
            .card p {
                color: var(--text-color);
            }
            .facilities-header-image {
                filter: brightness(0.4) contrast(1.2) saturate(0.8) !important;
                opacity: 0.9;
            }
            .facilities-header-overlay {
                background: linear-gradient(135deg, rgba(10, 59, 92, 0.85) 0%, rgba(14, 90, 158, 0.75) 100%) !important;
            }
            }
            
            /* Print Styles */
            @media print {
            .facilities-header {
                height: auto;
                min-height: 150px;
                padding: 1rem;
                margin-top: 0;
            }
            .facilities-header-image,
            .facilities-header-overlay {
                display: none;
            }
            .facilities-header-content {
                position: static;
                background-color: var(--light-background-color);
                padding: 1rem;
            }
            .card {
                page-break-inside: avoid;
            }
            }