        /* Global styles */
        body {
            font-family: 'Montserrat', sans-serif;
        }

        /* Topbar Styles */
        .topbar {
            background: linear-gradient(135deg, #c93a3e 0%, #7a1419 100%);
            padding: 0.4rem 0;
            font-size: 0.75rem;
        }

        .topbar-lang {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .topbar-lang a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-weight: 600;
            padding: 0.2rem 0.6rem;
            border-radius: 3px;
            transition: all 0.3s ease;
            font-size: 0.75rem;
        }

        .topbar-lang a.active {
            background-color: rgba(255, 255, 255, 0.2);
            color: white;
        }

        .topbar-lang a:not(.active):hover {
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
        }

        .topbar-links {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .topbar-links a {
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .topbar-links a:hover {
            color: rgba(255, 255, 255, 0.8);
        }

        .topbar-links a i {
            font-size: 0.9rem;
        }

        .topbar-links .separator {
            color: rgba(255, 255, 255, 0.4);
        }

        @media (max-width: 768px) {
            .topbar {
                display: none;
            }
        }

        /* Custom styles for OJK navbar */
        .navbar-ojk {
            background-color: #ffffff;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            padding: 0.5rem 0;
        }

        .navbar-ojk .navbar-brand img {
            height: 50px;
        }

        .navbar-ojk .nav-link {
            color: #333333;
            font-weight: 600;
            padding: 0.5rem 1rem;
            font-size: 14px;
            position: relative;
            transition: color 0.3s ease;
        }

        /* Underline effect only for non-dropdown links */
        .navbar-ojk .nav-link:not(.dropdown-toggle)::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background-color: #a41e22;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .navbar-ojk .nav-link:hover,
        .navbar-ojk .nav-link.active {
            color: #a41e22;
        }

        .navbar-ojk .nav-link:not(.dropdown-toggle):hover::after,
        .navbar-ojk .nav-link:not(.dropdown-toggle).active::after {
            width: 80%;
        }

        /* Dropdown styles */
        .navbar-ojk .dropdown {
            position: relative;
        }

        .navbar-ojk .dropdown-menu {
            border: none;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            border-radius: 8px;
            padding: 0.5rem 0;
            margin-top: 0;
            top: 100%;
        }

        /* Bridge gap between dropdown toggle and menu */
        .navbar-ojk .dropdown-menu::before {
            content: '';
            position: absolute;
            top: -10px;
            left: 0;
            right: 0;
            height: 10px;
        }

        .navbar-ojk .dropdown-item {
            color: #333333;
            font-weight: 500;
            font-size: 14px;
            padding: 0.6rem 1.5rem;
            transition: all 0.3s ease;
        }

        .navbar-ojk .dropdown-item:hover {
            background-color: #f8f9fa;
            color: #a41e22;
            padding-left: 1.8rem;
        }

        .navbar-ojk .dropdown-item.active,
        .navbar-ojk .dropdown-item:active {
            background-color: transparent;
            color: inherit;
        }

        .navbar-ojk .dropdown-toggle::after {
            margin-left: 0.3rem;
            vertical-align: 0.15em;
        }

        /* Dropdown hover behavior */
        .navbar-ojk .dropdown:hover .dropdown-menu,
        .navbar-ojk .dropdown-menu:hover {
            display: block;
        }

        /* Nested dropdown styles */
        .navbar-ojk .dropdown-submenu {
            position: relative;
        }

        .navbar-ojk .dropdown-submenu .dropdown-menu {
            top: 0;
            left: 100%;
            margin-top: -1px;
            margin-left: 0;
            display: none !important;
        }

        .navbar-ojk .dropdown-submenu .dropdown-menu.show {
            display: block !important;
        }

        .navbar-ojk .dropdown-item.dropdown-toggle {
            position: relative;
        }

        .navbar-ojk .dropdown-item.dropdown-toggle::after {
            display: inline-block;
            margin-left: 0.5em;
            vertical-align: 0.255em;
            content: "";
            border-top: 0.3em solid transparent;
            border-right: 0;
            border-bottom: 0.3em solid transparent;
            border-left: 0.3em solid;
            position: absolute;
            right: 1rem;
            margin-top: 0.2em;
        }

        .navbar-ojk .dropdown-submenu .dropdown-item {
            padding-left: 2rem;
        }

        @media (max-width: 991px) {
            .navbar-ojk .dropdown-submenu .dropdown-menu {
                position: static;
                float: none;
                width: 100%;
                margin-left: 0;
                box-shadow: none;
                border-radius: 0;
                padding-left: 1rem;
            }

            .navbar-ojk .dropdown-submenu .dropdown-item {
                padding-left: 2.5rem;
            }
        }

        .search-box {
            position: relative;
            width: 200px;
        }

        .search-box input {
            border: 1px solid #ddd;
            border-radius: 20px;
            padding: 0.4rem 2.5rem 0.4rem 1rem;
            font-size: 14px;
            width: 100%;
        }

        .search-box input:focus {
            outline: none;
            border-color: #a41e22;
            box-shadow: 0 0 0 0.2rem rgba(164, 30, 34, 0.1);
        }

        .search-box .search-icon {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            color: #666;
            cursor: pointer;
        }

        .lang-selector {
            background-color: #a41e22;
            color: white;
            border-radius: 50%;
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s ease;
            text-decoration: none;
        }

        .lang-selector:hover {
            background-color: #8a1a1e;
            color: white;
        }

        /* Responsive adjustments */
        @media (max-width: 991px) {
            .search-box {
                width: 100%;
                margin-top: 1rem;
            }

            .lang-selector {
                margin-top: 1rem;
            }
        }

        /* Hero Section Styles */
        .hero-section {
            position: relative;
            height: calc(100vh - 110px);
            color: white;
            overflow: hidden;
        }

        .carousel-inner,
        .carousel-item {
            height: 100%;
        }

        .hero-slide {
            position: relative;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .hero-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 2rem 1rem;
        }

        /* Fade-in animation from bottom */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .carousel-item.active .hero-content h1 {
            animation: fadeInUp 0.8s ease-out;
        }

        .carousel-item.active .hero-content p {
            animation: fadeInUp 0.8s ease-out 0.2s backwards;
        }

        .carousel-item.active .hero-content .hero-buttons {
            animation: fadeInUp 0.8s ease-out 0.4s backwards;
        }

        .hero-section h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero-section p {
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
            max-width: 800px;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .hero-btn {
            background-color: #c93a3e;
            color: white;
            padding: 0.875rem 2.5rem;
            font-weight: 600;
            border: none;
            border-radius: 6px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .hero-btn:hover {
            background-color: #a41e22;
            color: white;
        }

        .hero-btn-outline {
            background-color: transparent;
            color: white;
            border: 2px solid white;
        }

        .hero-btn-outline:hover {
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
        }

        /* Carousel Navigation */
        .carousel-control-prev,
        .carousel-control-next {
            width: 60px;
            height: 60px;
            background-color: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 1;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .carousel-control-prev {
            left: calc((100% - 1140px) / 2);
        }

        .carousel-control-next {
            right: calc((100% - 1140px) / 2);
        }

        @media (max-width: 1199px) {
            .carousel-control-prev {
                left: calc((100% - 960px) / 2);
            }
            .carousel-control-next {
                right: calc((100% - 960px) / 2);
            }
        }

        @media (max-width: 991px) {
            .carousel-control-prev {
                left: calc((100% - 720px) / 2);
            }
            .carousel-control-next {
                right: calc((100% - 720px) / 2);
            }
        }

        @media (max-width: 767px) {
            .carousel-control-prev {
                left: calc((100% - 540px) / 2);
            }
            .carousel-control-next {
                right: calc((100% - 540px) / 2);
            }
        }

        @media (max-width: 575px) {
            .carousel-control-prev {
                left: 15px;
            }
            .carousel-control-next {
                right: 15px;
            }
        }

        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            background-color: rgba(255, 255, 255, 0.3);
        }

        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            width: 24px;
            height: 24px;
        }

        /* Carousel Indicators */
        .carousel-indicators {
            margin-bottom: 2rem;
            z-index: 10;
        }

        .carousel-indicators [data-bs-target] {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            border: none;
            margin: 0 5px;
        }

        .carousel-indicators .active {
            background-color: white;
        }

        @media (max-width: 768px) {
            .hero-section {
                height: calc(100vh - 70px);
            }

            .hero-section h1 {
                font-size: 2rem;
            }

            .hero-section p {
                font-size: 1rem;
            }

            .carousel-control-prev,
            .carousel-control-next {
                width: 40px;
                height: 40px;
            }
        }

        /* Publikasi Section Styles */
        .publikasi-section {
            padding: 4rem 0;
            background-color: #ffffff;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .publikasi-section.animate-in {
            opacity: 1;
            transform: translateY(0);
        }

        .btn-lihat-semua {
            background-color: #c93a3e;
            color: white;
            padding: 0.625rem 1.5rem;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
        }

        .btn-lihat-semua:hover {
            background-color: #a41e22;
            color: white;
        }

        .publikasi-card {
            background: linear-gradient(135deg, #c93a3e 0%, #7a1419 100%);
            border-radius: 12px;
            padding: 2rem;
            color: white;
            position: relative;
            overflow: hidden;
            height: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .publikasi-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        .publikasi-card-large {
            min-height: 400px;
        }

        .publikasi-card-small {
            min-height: 180px;
        }

        .publikasi-card-content {
            position: relative;
            z-index: 2;
        }

        .publikasi-date {
            font-size: 0.875rem;
            opacity: 0.9;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
        }

        .publikasi-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            transition: text-decoration 0.3s ease;
        }

        a:hover .publikasi-title {
            text-decoration: underline;
        }

        .publikasi-card-small .publikasi-title {
            font-size: 1.25rem;
        }

        .publikasi-excerpt {
            font-size: 1rem;
            opacity: 0.9;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .publikasi-card-small .publikasi-excerpt {
            font-size: 0.9rem;
        }

        .publikasi-link {
            color: white;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
        }

        .publikasi-link:hover {
            color: white;
            text-decoration: underline;
        }

        @media (max-width: 768px) {
            .publikasi-card-large,
            .publikasi-card-small {
                min-height: 280px;
            }

            .publikasi-title {
                font-size: 1.25rem;
            }
        }

        /* Berita Section Styles */
        .berita-section {
            padding: 4rem 0;
            background-color: #f5f5f5;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .berita-section.animate-in {
            opacity: 1;
            transform: translateY(0);
        }

        .berita-card {
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }

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

        .berita-image {
            position: relative;
            height: 250px;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: flex-end;
            padding: 1.5rem;
        }

        .berita-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
        }

        .berita-decor-circle {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.3);
            background: rgba(255,255,255,0.1);
        }

        .berita-image-title {
            position: relative;
            z-index: 2;
            color: white;
            font-size: 1.25rem;
            font-weight: 700;
            line-height: 1.3;
            margin: 0;
            transition: text-decoration 0.3s ease;
        }

        a:hover .berita-image-title {
            text-decoration: underline;
        }

        .berita-content {
            padding: 1.5rem;
        }

        .berita-date {
            font-size: 0.875rem;
            color: #666;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
        }

        .berita-excerpt {
            font-size: 0.95rem;
            color: #333;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .berita-link {
            color: #c93a3e;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
        }

        .berita-link:hover {
            text-decoration: underline;
        }

        @media (max-width: 768px) {
            .berita-image {
                height: 200px;
            }

            .berita-image-title {
                font-size: 1.1rem;
            }
        }

        /* Agenda Section Styles */
        .agenda-section {
            background-color: white;
            padding: 4rem 0;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .agenda-section.animate-in {
            opacity: 1;
            transform: translateY(0);
        }

        .agenda-container {
            display: flex;
            gap: 2rem;
            margin-top: 2rem;
        }

        .agenda-list {
            flex: 0 0 300px;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .agenda-item {
            background-color: white;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 1.25rem;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .agenda-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background-color: transparent;
            border-radius: 8px 0 0 8px;
            transition: all 0.3s ease;
        }

        .agenda-item:hover {
            border-color: #c93a3e;
        }

        .agenda-item.active {
            background-color: #c93a3e;
            border-color: #c93a3e;
            color: white;
        }

        .agenda-item.active::before {
            background-color: #a41e22;
        }

        .agenda-item-title {
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
            line-height: 1.4;
        }

        .agenda-item.active .agenda-item-title {
            color: white;
        }

        .agenda-item-meta {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            font-size: 0.85rem;
        }

        .agenda-item-meta-row {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .agenda-item-meta i {
            width: 16px;
            font-size: 0.9rem;
        }

        .agenda-item.active .agenda-item-meta {
            color: rgba(255, 255, 255, 0.9);
        }

        .agenda-detail {
            flex: 1;
            background: linear-gradient(135deg, #c93a3e 0%, #7a1419 100%);
            border-radius: 12px;
            padding: 2.5rem;
            color: white;
            position: relative;
            overflow: hidden;
            min-height: 450px;
        }

        .agenda-detail::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        .agenda-decor-circle {
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            border: 2px solid rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            pointer-events: none;
        }

        .agenda-detail-content {
            position: relative;
            z-index: 2;
        }

        .agenda-badge {
            display: inline-block;
            background-color: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .agenda-detail-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 2rem;
            line-height: 1.3;
        }

        .agenda-info-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }

        .agenda-info-item {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .agenda-info-label {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.85rem;
            opacity: 0.9;
            text-transform: capitalize;
        }

        .agenda-info-label i {
            font-size: 1.1rem;
        }

        .agenda-info-value {
            font-size: 1rem;
            font-weight: 600;
            margin-left: 1.6rem;
        }

        .agenda-description-title {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .agenda-description-text {
            font-size: 0.95rem;
            line-height: 1.7;
            opacity: 0.95;
        }

        @media (max-width: 768px) {
            .agenda-container {
                flex-direction: column;
            }

            .agenda-list {
                flex: 1;
            }

            .agenda-detail {
                min-height: 400px;
            }

            .agenda-detail-title {
                font-size: 1.5rem;
            }

            .agenda-info-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }

        /* Infografis Section Styles */
        .infografis-section {
            background-color: #f5f5f5;
            padding: 4rem 0;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .infografis-section.animate-in {
            opacity: 1;
            transform: translateY(0);
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 3rem;
            color: #333;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background-color: #a41e22;
        }

        .stat-card {
            background: linear-gradient(135deg, #7a1419 0%, #b83a3f 100%);
            border-radius: 12px;
            padding: 2rem;
            color: white;
            position: relative;
            overflow: hidden;
            height: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        .stat-card-title {
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            opacity: 0.95;
            line-height: 1.4;
        }

        .stat-card-value {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .stat-trend {
            font-size: 1.5rem;
            opacity: 0.8;
        }

        .stat-card-updated {
            font-size: 0.75rem;
            opacity: 0.7;
            margin-top: 1rem;
        }

        /* Decorative elements */
        .card-decorations {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .decor-circle {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
        }

        .decor-circle-1 {
            width: 120px;
            height: 120px;
            top: -30px;
            right: -30px;
            border: 2px solid rgba(255, 255, 255, 0.1);
            background: transparent;
        }

        .decor-circle-2 {
            width: 80px;
            height: 80px;
            bottom: -20px;
            left: -20px;
        }

        .decor-circle-3 {
            width: 40px;
            height: 40px;
            top: 50%;
            right: 20px;
        }

        .decor-line {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
        }

        .decor-line-1 {
            width: 2px;
            height: 100px;
            top: 0;
            left: 30px;
            transform: rotate(15deg);
        }

        .decor-line-2 {
            width: 60px;
            height: 2px;
            bottom: 30px;
            right: 0;
        }

        .stat-card-content {
            position: relative;
            z-index: 2;
        }

        @media (max-width: 768px) {
            .stat-card {
                margin-bottom: 1.5rem;
            }

            .stat-card-value {
                font-size: 2rem;
            }

            .section-title {
                font-size: 2rem;
            }
        }

        /* Footer Styles */
        .footer {
            background-color: #2c3e50;
            color: white;
            padding: 3rem 0 1.5rem;
        }

        .footer-content {
            display: flex;
            gap: 4rem;
            margin-bottom: 3rem;
        }

        .footer-logo-section {
            flex: 0 0 300px;
        }

        .footer-logo {
            max-width: 200px;
            margin-bottom: 1.5rem;
            filter: brightness(0) invert(1);
        }

        .footer-info {
            flex: 1;
        }

        .footer-info h5 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: white;
        }

        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .footer-contact-item i {
            font-size: 1rem;
            margin-top: 0.25rem;
            color: #c93a3e;
        }

        .footer-contact-item a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-contact-item a:hover {
            color: #c93a3e;
        }

        .footer-social {
            flex: 0 0 200px;
        }

        .footer-social h5 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: white;
        }

        .social-icons {
            display: flex;
            gap: 1rem;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background-color: #c93a3e;
            color: white;
            transform: translateY(-3px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9rem;
        }

        .footer-copyright {
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-links {
            display: flex;
            gap: 1.5rem;
        }

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

        .footer-links a:hover {
            color: white;
        }

        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background-color: #c93a3e;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.2rem;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .scroll-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .scroll-to-top:hover {
            background-color: #a41e22;
            color: white;
            transform: translateY(-3px);
        }

        @media (max-width: 768px) {
            .footer-content {
                flex-direction: column;
                gap: 2rem;
            }

            .footer-logo-section,
            .footer-info,
            .footer-social {
                flex: 1;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }

            .footer-links {
                flex-direction: column;
                gap: 0.75rem;
            }
        }
        .article-tags {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 2px solid #f0f0f0;
        }

        .article-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background-color: #f0f0f0;
            color: #666;
            border-radius: 20px;
            font-size: 0.875rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .article-tag:hover {
            background-color: #c93a3e;
            color: white;
        }

        /* Disclaimer Modal Styles */
        .modal-content {
            border: none;
            border-radius: 16px;
            overflow: hidden;
        }

        .btn-close-modal {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            z-index: 10;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-close-modal:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(90deg);
        }

        .disclaimer-content {
            background: linear-gradient(135deg, #c93a3e 0%, #7a1419 100%);
            padding: 3rem;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .disclaimer-badge {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .disclaimer-title {
            font-size: 1.75rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1.5rem;
        }

        .disclaimer-text {
            font-size: 1rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.95);
            margin: 0;
        }

        /* Bootstrap Select Custom Styles */
        .bootstrap-select .dropdown-toggle {
            border: 1px solid #ddd;
            background-color: white;
            color: #333;
        }

        .bootstrap-select .dropdown-toggle:focus {
            outline: none !important;
            border-color: #c93a3e;
            box-shadow: 0 0 0 0.2rem rgba(201, 58, 62, 0.25);
        }

        .bootstrap-select .dropdown-menu {
            border: 1px solid #ddd;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .bootstrap-select .dropdown-menu li a {
            color: #333;
            transition: all 0.3s ease;
        }

        .bootstrap-select .dropdown-menu li a:hover {
            background-color: rgba(201, 58, 62, 0.1);
            color: #c93a3e;
        }

        .bootstrap-select .dropdown-menu li.selected a {
            background-color: #c93a3e;
            color: white;
        }

        .bootstrap-select .dropdown-menu li.selected a:hover {
            background-color: #a41e22;
            color: white;
        }

        .bootstrap-select .dropdown-menu li.active a {
            background-color: rgba(201, 58, 62, 0.1);
            color: #c93a3e;
        }

        .bootstrap-select .bs-ok-default::after {
            border-width: 0 0.075em 0.075em 0;
        }

        /* Floating TKBI Menu Widget - Circular Vertical Layout */
        @keyframes tkbi-bounce {
            0%, 100% {
                transform: translateY(-50%) translateY(0);
            }
            50% {
                transform: translateY(-50%) translateY(-15px);
            }
        }

        .tkbi-floating-widget {
            position: fixed;
            right: 40px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 999;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            animation: tkbi-bounce 2s ease-in-out infinite;
        }

        .tkbi-circular-btn-group {
            position: relative;
        }

        .tkbi-circular-btn {
            width: 55px;
            height: 55px;
            border-radius: 50px;
            background: linear-gradient(135deg, #c93a3e 0%, #7a1419 100%);
            border: 3px solid white;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: white;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: visible;
            padding-right: 0;
            cursor: pointer;
        }

        /* Single button (Overview, FAQ) with title hover */
        a.tkbi-circular-btn::after {
            content: attr(title);
            position: absolute;
            right: 70px;
            white-space: nowrap;
            background: linear-gradient(135deg, #c93a3e 0%, #7a1419 100%);
            color: white;
            padding: 0.6rem 1rem;
            border-radius: 8px;
            border: 2px solid #c93a3e;
            font-size: 0.95rem;
            font-weight: 700;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
            opacity: 0;
            visibility: hidden;
            transform: translateX(10px);
            transition: all 0.3s ease;
            pointer-events: none;
            text-align: center;
        }

        a.tkbi-circular-btn:hover::after {
            opacity: 1;
            visibility: visible;
            transform: translateX(0);
        }

        .tkbi-circular-btn i {
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }

        a.tkbi-circular-btn:hover {
            transform: translateX(-10px);
            box-shadow: 0 6px 20px rgba(201, 58, 62, 0.4);
            background: linear-gradient(135deg, #a82f33 0%, #5d0f13 100%);
        }

        /* Submenu for Simulasi and Explorer - With Title Header */
        .tkbi-submenu {
            position: absolute;
            right: 70px;
            top: 50%;
            transform: translateY(-50%) translateX(10px);
            display: flex;
            flex-direction: column;
            gap: 0;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            pointer-events: none;
            background: white;
            border-radius: 8px;
            border: 2px solid #c93a3e;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
            overflow: hidden;
            min-width: 200px;
        }

        .tkbi-circular-btn-group:hover .tkbi-submenu {
            opacity: 1;
            visibility: visible;
            transform: translateY(-50%) translateX(0);
            pointer-events: all;
        }

        .tkbi-circular-btn-group:hover .tkbi-circular-btn {
            transform: translateX(-10px);
            box-shadow: 0 6px 20px rgba(201, 58, 62, 0.4);
            background: linear-gradient(135deg, #a82f33 0%, #5d0f13 100%);
        }

        .tkbi-submenu-title {
            background: linear-gradient(135deg, #c93a3e 0%, #7a1419 100%);
            color: white;
            padding: 0.6rem 1rem;
            font-size: 0.95rem;
            font-weight: 700;
            text-align: center;
            border-bottom: 2px solid rgba(255, 255, 255, 0.2);
        }

        .tkbi-submenu-options {
            display: flex;
            flex-direction: row;
            gap: 0;
        }

        .tkbi-submenu-item {
            background: white;
            color: #333;
            padding: 0.6rem 1.25rem;
            border: none;
            font-size: 0.9rem;
            font-weight: 600;
            text-decoration: none;
            white-space: nowrap;
            transition: all 0.3s ease;
            position: relative;
            flex: 1;
            text-align: center;
        }

        .tkbi-submenu-item:first-child {
            border-right: 2px solid #c93a3e;
        }

        .tkbi-submenu-item:hover {
            background: linear-gradient(135deg, rgba(201, 58, 62, 0.9) 0%, rgba(122, 20, 25, 0.9) 100%);
            color: white;
        }

        .tkbi-submenu-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(201, 58, 62, 0.1) 0%, rgba(122, 20, 25, 0.1) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .tkbi-submenu-item:hover::before {
            opacity: 1;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .tkbi-floating-widget {
                display: none;
            }
        }
