        :root {
            --primary-blue: #1e3a8a;
            --secondary-blue: #3b82f6;
            --orange: #fb923c;
            --light-gray: #f8fafc;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
        }

        /* Header/Navbar */
        .navbar {
            background: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            padding: 1rem 0;
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: bold;
        }

        .navbar-brand span {
            color: var(--secondary-blue);
        }

        .nav-link {
            color: #64748b !important;
            font-size: 14px;
            margin: 0 0.5rem;
        }

        .nav-link:hover {
            color: var(--secondary-blue) !important;
        }

        .btn-login {
            background: var(--orange);
            color: white;
            border: none;
            padding: 0.5rem 1.5rem;
            border-radius: 5px;
            font-size: 14px;
        }

        .btn-login:hover {
            background: #f97316;
        }

        /* Hero Section */
        .landing-dark-bg {
            /* background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%); */
        }

        .hero-section {
            border-radius: 20px;
            margin: 2rem 0;
            position: relative;
            overflow: hidden;
            margin-top: 80px;
            min-height: 480px;
        }

        .hero-content {
            padding: 4rem 2rem;
        }

        .hero-content .text-pre {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

        .hero-content h1 {
            color: white;
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero-content h1 span {
            background: linear-gradient(to right, #fb923c 0%, #fbbf24 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-content p {
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 2rem;
            max-width: 500px;
            font-size: 1rem;
            line-height: 1.7;
        }

        .btn-selengkapnya {
            background: var(--orange);
            color: white;
            border: none;
            padding: 0.875rem 2.5rem;
            border-radius: 0.475rem;
            text-decoration: none;
            display: inline-block;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 0.5rem 1rem rgba(251, 146, 60, 0.3);
        }

        .btn-selengkapnya:hover {
            background: #f97316;
            transform: translateY(-2px);
            box-shadow: 0 0.75rem 1.5rem rgba(251, 146, 60, 0.4);
            color: white;
        }

        .hero-info-text {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.875rem;
            margin-top: 1.5rem;
        }

        .hero-info-text i {
            margin-right: 0.5rem;
        }

        .hero-illustration {
            position: relative;
            padding: 4rem 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .search-box {
            background: white;
            padding: 1rem 1.5rem;
            border-radius: 0.75rem;
            box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.15);
            display: flex;
            align-items: center;
            gap: 1rem;
            position: relative;
            z-index: 2;
        }

        .search-box input {
            border: none;
            outline: none;
            flex: 1;
            font-size: 0.95rem;
            color: #3F4254;
        }

        .search-box input::placeholder {
            color: #B5B5C3;
        }

        .search-box .btn-search {
            background: var(--orange);
            color: white;
            border: none;
            padding: 0.625rem 1.25rem;
            border-radius: 0.475rem;
            transition: all 0.3s ease;
        }

        .search-box .btn-search:hover {
            background: #f97316;
        }

        .circle {
            position: absolute;
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-20px);
            }
        }

        .circle-pink {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
            top: 20%;
            right: 30%;
            animation-delay: 0s;
            box-shadow: 0 10px 40px rgba(236, 72, 153, 0.3);
        }

        .circle-blue {
            width: 180px;
            height: 180px;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.6) 0%, rgba(37, 99, 235, 0.4) 100%);
            top: -50px;
            right: 50px;
            animation-delay: 1s;
            backdrop-filter: blur(10px);
        }

        .circle-orange {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            bottom: 30%;
            right: 35%;
            animation-delay: 2s;
            box-shadow: 0 10px 40px rgba(251, 191, 36, 0.3);
        }

        .circle-yellow {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, #fde047 0%, #facc15 100%);
            bottom: 30%;
            right: 10%;
            animation-delay: 1.5s;
            box-shadow: 0 10px 40px rgba(253, 224, 71, 0.3);
        }

        .landing-curve {
            margin-top: -2rem;
        }

        .landing-curve svg {
            height: 3rem;
        }

        .landing-dark-color {
            color: var(--bs-body-bg);
        }

        /* Info Section */
        .info-section {
            padding: 4rem 0;
            margin-bottom: 3rem;
        }

        .info-section h2 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .info-section h2 span {
            color: var(--secondary-blue);
        }

        .pdf-link {
            background: #fee2e2;
            padding: 1rem;
            border-radius: 10px;
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            text-decoration: none;
            color: #dc2626;
            margin-top: 2rem;
            box-shadow: 0 4px 6px rgba(220, 38, 38, 0.1);
            transition: all 0.3s ease;
        }

        .pdf-link:hover {
            background: #fecaca;
            color: #b91c1c;
            transform: translateY(-2px);
            box-shadow: 0 8px 12px rgba(220, 38, 38, 0.2);
        }

        .pdf-link i {
            font-size: 2rem;
            transition: transform 0.3s ease;
        }

        .pdf-link:hover i {
            transform: scale(1.1);
        }

        /* Document Cards Section */
        .document-cards-section {
            padding: 3rem 0;
            margin-bottom: 3rem;
        }

        /* Document Cards */
        .document-card {
            cursor: pointer;
            background: white;
            border: none;
            border-radius: 12px;
            padding: 2.5rem 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }

        .document-card:hover {
            transform: translateY(-8px);
            border-color: var(--secondary-blue);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
        }

        .document-card i {
            font-size: 3.5rem;
            color: var(--secondary-blue);
            margin-bottom: 1.5rem;
            opacity: 1;
        }

        .document-card h5 {
            font-size: 0.875rem;
            font-weight: 500;
            color: #1e293b;
            margin: 0;
            line-height: 1.6;
        }

        .btn-unduh {
            background: var(--secondary-blue);
            color: white;
            border: none;
            padding: 0.625rem 1.5rem;
            border-radius: 6px;
            font-size: 0.875rem;
            margin-top: 1rem;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .btn-unduh:hover {
            background: #2563eb;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(59, 130, 246, 0.3);
        }

        .section-title {
            text-align: center;
            font-size: 1.8rem;
            margin: 0 0 2rem 0;
        }

        .format-dokumen-section {
            padding: 3rem 0;
            margin-bottom: 3rem;
        }

        /* Format Document Card - Different style */
        .format-document-card {
            background: white;
            border: none;
            border-radius: 12px;
            padding: 1.5rem;
            text-align: left;
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }

        .format-document-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
        }

        .format-document-card i {
            font-size: 2.5rem;
            color: var(--secondary-blue);
            margin-bottom: 1rem;
        }

        .format-document-card .file-size {
            font-size: 0.75rem;
            color: #94a3b8;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .format-document-card h5 {
            font-size: 0.95rem;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 0.75rem;
            line-height: 1.4;
        }

        .format-document-card p {
            font-size: 0.8rem;
            color: #64748b;
            line-height: 1.5;
            margin-bottom: 1rem;
            flex-grow: 1;
        }

        .search-dokumen {
            max-width: 500px;
            margin: 0 auto 3rem auto;
            position: relative;
        }

        .search-dokumen input {
            width: 100%;
            padding: 0.75rem 1rem 0.75rem 2.5rem;
            border: 1px solid #e2e8f0;
            border-radius: 5px;
        }

        .search-dokumen i {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: #94a3b8;
        }

        /* Pengumuman Section */
        .pengumuman-section {
            background: var(--secondary-blue);
            padding: 4rem 0;
            color: white;
        }

        .pengumuman-section-new {
            padding: 4rem 0;
        }

        .pengumuman-card {
            cursor: pointer;
            background: transparent;
            border: 2px solid rgba(255, 255, 255, 0.882);
            border-radius: 15px;
            padding: 2rem 1.5rem;
            text-align: left;
            height: 100%;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .pengumuman-card-new {
            background: white;
            cursor: pointer;
            /* border: 2px solid rgba(255, 255, 255, 0.882); */
            border-radius: 15px;
            padding: 2rem 1.5rem;
            text-align: left;
            height: 100%;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }

        .pengumuman-card-new p {
            flex-grow: 1;
        }

        .pengumuman-card-new .pengumuman-link {
            margin-top: auto;
        }

        .pengumuman-card-new:hover {

            transform: translateY(-5px);
        }

        .pengumuman-card h5 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
            line-height: 1.4;
        }

        .pengumuman-card .date {
            font-size: 0.85rem;
            opacity: 0.9;
            margin-bottom: 0.5rem;
        }

        .pengumuman-card p {
            font-size: 0.9rem;
            line-height: 1.6;
            opacity: 0.95;
            margin-bottom: 1.25rem;
            flex-grow: 1;
        }

        .pengumuman-link {
            color: var(--secondary-blue);
            font-weight: 500;
        }

        .pengumuman-side {
            text-align: center;
        }

        .pengumuman-side h3 {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .pengumuman-side p {
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 2rem;
            opacity: 0.95;
        }

        .pengumuman-nav-buttons {
            display: flex;
            justify-content: center;
            gap: 0.75rem;
            margin-top: 1.5rem;
        }

        .pengumuman-nav-buttons button {
            background: white;
            color: var(--secondary-blue);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }

        .pengumuman-nav-buttons button:hover {
            background: #f0f9ff;
            transform: scale(1.05);
        }

        /* Berita dan Artikel Section */
        .berita-section {
            padding: 4rem 0;
            /* background-color: #f8fafc; */
        }

        .berita-section .section-title {
            font-size: 2.5rem;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 3rem;
        }

        /* Large Card Style - Full Width */
        .berita-card-large {
            /* background: white; */
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            border: 1px solid #e2e8f0;
        }

        .berita-card-large:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }

        .berita-image-large {
            width: 100%;
            height: 400px;
            overflow: hidden;
            position: relative;
            /* background-color: #f1f5f9; */
        }

        .berita-image-large img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .berita-card-large:hover .berita-image-large img {
            transform: scale(1.03);
        }

        .berita-content-large {
            padding: 2rem 2.5rem;
            display: flex;
            flex-direction: column;
        }

        .berita-title-large {
            font-size: 1.5rem;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 1rem;
            line-height: 1.4;
        }

        .berita-text-large {
            font-size: 0.95rem;
            color: #64748b;
            line-height: 1.7;
            margin-bottom: 1.25rem;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            line-clamp: 3;
            -webkit-box-orient: vertical;
        }

        .berita-date-large {
            font-size: 0.875rem;
            color: #94a3b8;
            font-weight: 400;
        }

        /* Small Card Style - Grid (Keep for backward compatibility) */
        .berita-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            border: 1px solid #e2e8f0;
        }

        .berita-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
        }

        .berita-image {
            width: 100%;
            height: 220px;
            overflow: hidden;
            position: relative;
            background-color: #f1f5f9;
        }

        .berita-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .berita-card:hover .berita-image img {
            transform: scale(1.05);
        }

        .berita-content {
            padding: 1.5rem 1.25rem;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .berita-title {
            font-size: 1.125rem;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 0.75rem;
            line-height: 1.4;
        }

        .berita-text {
            font-size: 0.875rem;
            color: #64748b;
            line-height: 1.6;
            margin-bottom: 1rem;
            flex-grow: 1;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            line-clamp: 3;
            -webkit-box-orient: vertical;
        }

        .berita-date {
            font-size: 0.8125rem;
            color: #94a3b8;
            margin-top: auto;
            font-weight: 400;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .berita-image-large {
                height: 250px;
            }

            .berita-content-large {
                padding: 1.5rem;
            }

            .berita-title-large {
                font-size: 1.25rem;
            }
        }

        /* FAQ Section */
        .faq-section {
            padding: 4rem 0;
        }

        .faq-section h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
            font-weight: 400;
            line-height: 1.5;
            color: #1e293b;
        }

        .faq-section h2 span {
            color: var(--secondary-blue);
            font-weight: 600;
        }

        .accordion {
            border: none;
        }

        .accordion-item {
            background: white;
            border: none;
            border-radius: 8px !important;
            margin-bottom: 1rem;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
            overflow: hidden;
        }

        .accordion-button {
            background: white !important;
            color: #1e293b !important;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 1.25rem 1.5rem;
            border: none;
            box-shadow: none !important;
        }

        .accordion-button:not(.collapsed) {
            color: var(--secondary-blue) !important;
            background: white !important;
        }

        .accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }

        .accordion-button:not(.collapsed)::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233b82f6'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }

        .accordion-body {
            padding: 0 1.5rem 1.25rem 1.5rem;
            color: #64748b;
            font-size: 0.9rem;
            line-height: 1.7;
        }

        /* Footer */
        footer {
            background: white;
            border-top: 1px solid #e2e8f0;
            padding: 2rem 0;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 35px;
            height: 35px;
            background: var(--secondary-blue);
            color: white;
            border-radius: 50%;
            margin-right: 0.5rem;
            text-decoration: none;
        }

        .copyright {
            text-align: center;
            padding: 1rem 0;
            border-top: 1px solid #e2e8f0;
            margin-top: 2rem;
            font-size: 0.85rem;
            color: #64748b;
        }

        .lihat-lebih {
            text-align: center;
            margin: 3rem 0 1rem 0;
        }

        .lihat-lebih-secondary {
            text-align: center;
            margin: 3rem 0 1rem 0;
        }

        .lihat-lebih {
            text-align: center;
            margin: 3rem 0 1rem 0;
        }

        .lihat-lebih a {
            color: var(--secondary-blue);
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }


        .lihat-lebih-secondary a {
            color: white;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .lihat-lebih-secondary a:hover {
            color: #f0f9ff;
            transform: translateY(2px);
        }




        .lihat-lebih a:hover {
            color: var(--primary-blue);
            transform: translateY(2px);
        }

        .lihat-lebih a i {
            font-size: 0.85rem;
            transition: transform 0.3s ease;
        }

        .lihat-lebih a:hover i {
            transform: translateY(3px);
        }

        .pagination-custom {
            text-align: center;
            margin-top: 2rem;
        }

        .pagination-custom button {
            background: var(--secondary-blue);
            color: white;
            border: none;
            width: 35px;
            height: 35px;
            border-radius: 5px;
            margin: 0 0.25rem;
        }

        .separator {
            width: 100%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0px;
        }

        .bg {
            height: 5px;
            flex: 1;
            position: relative;
            background-color: #fbb315;
        }

        .separator-bg {
            height: 5px;
            flex: 1;
            position: relative;
            background-color: #006db0;
        }

        /* Breadcrumb Section */
        .breadcrumb-section {
            margin-top: 68px;
        }

        .breadcrumb-section h2 {
            font-size: 2rem;
            font-weight: 600;
        }

        .breadcrumb {
            background: transparent;
            padding: 0;
            margin: 0;
        }

        .breadcrumb-item a {
            text-decoration: none;
            opacity: 0.9;
        }

        .breadcrumb-item a:hover {
            opacity: 1;
            text-decoration: underline;
        }

        .breadcrumb-item.active {
            opacity: 0.8;
        }

        .breadcrumb-item+.breadcrumb-item::before {
            color: rgba(255, 255, 255, 0.7);
        }