/* ============================================
   FRONTEND MAIN STYLES
   File: assets/css/frontend.css
   ============================================ */

/* ----- GOOGLE FONTS ----- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    
    --primary-color: #4e73df;
    --primary-dark: #224abe;
    --secondary-color: #858796;
    --success-color: #1cc88a;
    --info-color: #36b9cc;
    --warning-color: #f6c23e;
    --danger-color: #e74a3b;
    --dark-color: #5a5c69;
    --light-color: #f8f9fc;
    
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-success: linear-gradient(135deg, #1cc88a 0%, #13855c 100%);
    --gradient-info: linear-gradient(135deg, #36b9cc 0%, #1a8a9f 100%);
    --gradient-warning: linear-gradient(135deg, #f6c23e 0%, #dda20a 100%);
    --gradient-danger: linear-gradient(135deg, #e74a3b 0%, #be2e22 100%);
}

/* ----- GLOBAL STYLES ----- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: #333;
    line-height: 1.7;
    overflow-x: hidden;
    background-color: #f2f5f4;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.3;
}

table {
    border-collapse: collapse;
    width: 100%;
}

thead {
    background-color: #717875;
    color: #ffffff;
}

th {
    background-color: #717875;
    color: white;
}

/* ----- NAVBAR 2 BARIS ----- */
.navbar-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: white;
}

.navbar-spacer {
    height: 0px;
    width: 100%;
}

/* Top Bar (Baris 1) */
.top-bar {
    background: linear-gradient(135deg, #2c3e50 0%, #1a2634 100%);
    color: white;
    padding: 8px 0;
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar.hidden {
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    padding: 0;
    height: 0;
    overflow: hidden;
}

.logo-area img {
    max-height: 50px;
    width: auto;
}

.site-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, #fff 0%, #ddd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.1rem;
    color: #667eea;
}

.info-content h6 {
    font-size: 0.8rem;
    margin: 0 0 2px;
    opacity: 0.8;
    font-weight: 500;
}

.info-content p {
    font-size: 0.7rem;
    margin: 0;
    font-weight: 500;
    line-height: 1.4;
}

/* Bottom Bar (Baris 2) */
#mainNav {
    background: white;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    padding: 0;
    transition: all 0.3s ease;
    position: relative;
}

#mainNav.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

#mainNav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    max-width: 1320px;
    margin: 0 auto;
}

.mobile-logo {
    display: none;
}

#mainNav .navbar-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2px;
    margin: 0;
    padding: 0;
}

#mainNav .nav-link {
    font-weight: 500;
    color: #333;
    padding: 6px 12px !important;
    transition: all 0.3s;
    border-radius: 5px;
    font-size: 0.85rem;
}

#mainNav .nav-link:hover,
#mainNav .nav-link.active {
    color: var(--primary-color);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    min-width: 200px;
    padding: 0.4rem 0;
    margin: 0.3rem 0 0;
    font-size: 0.8rem;
    background: #fff;
    border: none;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.dropdown-menu.show {
    display: block;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 6px 18px;
    color: #333;
    transition: all 0.3s;
    font-size: 0.8rem;
}

.dropdown-item:hover {
    background: #f8f9fc;
    color: var(--primary-color);
    padding-left: 22px;
}

.dropdown-item i {
    width: 18px;
    margin-right: 8px;
    text-align: center;
    color: var(--primary-color);
    font-size: 0.75rem;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Search Box */
.search-box {
    min-width: 180px;
}

.search-box .form-control {
    border-radius: 50px 0 0 50px;
    border: 2px solid #e9ecef;
    border-right: none;
    height: 36px;
    font-size: 0.8rem;
    padding: 0 12px;
}

.search-box .btn {
    border-radius: 0 50px 50px 0;
    background: var(--gradient-primary);
    border: none;
    padding: 0 15px;
    height: 36px;
    color: white;
    font-weight: 500;
    font-size: 0.8rem;
}

/* Featured Cards */
.featured-cards-section {
    background: #f8f9fc;
}

.featured-card {
    border: none;
    border-radius: 15px;
    overflow: visible !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s;
    height: 100%;
}

.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.featured-card .card-header {
    padding: 15px 20px;
    border-bottom: none;
}

.featured-card .card-header.bg-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

/* List Group Items */
.list-group-item {
    border-left: none;
    border-right: none;
    padding: 20px;
    transition: all 0.3s;
}

.list-group-item:hover {
    background: #f8f9fc;
    transform: translateX(5px);
}

.btn-link {
    font-size: 0.85rem;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
}

.btn-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

/* Shortcut Cards */
.shortcut-card {
    display: block;
    text-decoration: none;
    background: #fff;
    border-radius: 12px;
    padding: 12px 8px;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid #eef2f6;
}

.shortcut-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.shortcut-icon {
    margin-bottom: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shortcut-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.shortcut-icon i {
    font-size: 48px;
    transition: all 0.3s ease;
    color: #0d6efd;
}

.shortcut-description {
    font-size: 13px;
    color: #495057;
    margin: 0;
    font-weight: 500;
    line-height: 1.3;
}

/* Category Cards */
.category-card {
    display: block;
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s;
    text-decoration: none;
    color: #333;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    background: var(--gradient-primary);
    color: white;
}

.category-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 30px;
    transition: all 0.3s;
}

.category-card:hover .category-icon {
    background: white;
    color: var(--primary-color);
    transform: scale(1.1);
}

.category-card h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.category-count {
    color: #999;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: #1a1a2e;
    color: #fff;
    padding: 80px 0 0;
}

.footer h4, .footer h5 {
    color: white;
}

.footer h5 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gradient-primary);
}

.footer-text {
    color: #999;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--gradient-primary);
    transform: translateY(-5px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
}

.footer-links a i {
    font-size: 0.8rem;
    margin-right: 8px;
    color: var(--primary-color);
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #999;
}

.contact-info li i {
    margin-right: 10px;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 3px;
}

.footer-bottom {
    margin-top: 50px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #999;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    color: white;
}

/* Breadcrumb */
.breadcrumb-wrapper {
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.breadcrumb {
    background: transparent;
    padding: 10px 0;
    margin: 0;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s;
}

.preloader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ============================================
   FOOTER INFO CARDS
   ============================================ */

.footer-info-section {
    margin: 30px 0 40px;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.info-card i {
    font-size: 2.5rem;
    color: #667eea;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.info-card:hover i {
    transform: scale(1.1);
    color: #8b5cf6;
}

.info-card-content {
    flex: 1;
}

.info-card-content h6 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
    letter-spacing: 0.5px;
}

.info-card-content p {
    font-size: 0.85rem;
    color: #cbd5e1;
    margin: 0;
    line-height: 1.5;
}

.info-card-content p strong {
    color: #fbbf24;
    font-weight: 700;
}

/* ============================================
   FOOTER MARQUEE - ENHANCED
   ============================================ */

.footer-marquee {
    background: linear-gradient(135deg, #1e2a3a 0%, #2c3e50 100%);
    margin: 20px 0 0;
    padding: 12px 0;
    border-top: 2px solid rgba(102, 126, 234, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.footer-marquee::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2, #667eea);
    animation: marqueeGradient 3s linear infinite;
    background-size: 200% 100%;
}

@keyframes marqueeGradient {
    0% { background-position: 0% 0; }
    100% { background-position: 200% 0; }
}

.footer-marquee-wrapper {
    position: relative;
}

.footer-marquee .marquee-label {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 18px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    white-space: nowrap;
    transition: all 0.3s ease;
}

.footer-marquee .marquee-label:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.footer-marquee .marquee-label i {
    animation: bellRing 2s infinite;
    font-size: 1rem;
}

@keyframes bellRing {
    0%, 100% { transform: rotate(0); }
    10% { transform: rotate(15deg); }
    20% { transform: rotate(-15deg); }
    30% { transform: rotate(10deg); }
    40% { transform: rotate(-10deg); }
    50% { transform: rotate(5deg); }
    60% { transform: rotate(-5deg); }
}

.footer-marquee .marquee-container {
    overflow: hidden;
    position: relative;
    padding: 8px 0;
}

.footer-marquee .marquee-content {
    display: inline-block;
    animation: marqueeScroll 40s linear infinite;
    white-space: nowrap;
    font-size: 0.9rem;
}

.footer-marquee .marquee-content:hover {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.footer-marquee .marquee-item {
    display: inline-block;
    margin-right: 30px;
    padding: 3px 0;
    background: rgba(255, 255, 255, 0.05);
    padding: 5px 15px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.footer-marquee .marquee-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.footer-marquee .marquee-item .date {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 10px;
    border-radius: 30px;
    font-size: 0.7rem;
    margin-right: 8px;
    display: inline-block;
    font-weight: 600;
}

.footer-marquee .marquee-link {
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
    position: relative;
}

.footer-marquee .marquee-link:hover {
    color: #fbbf24;
    text-decoration: underline;
}

.footer-marquee .marquee-link i.fa-paperclip {
    font-size: 0.7rem;
    opacity: 0.8;
    margin-left: 5px;
}

.footer-marquee .separator {
    color: #667eea;
    font-weight: bold;
    font-size: 1.2rem;
    margin-left: 25px;
    display: inline-block;
    animation: pulseOpacity 2s infinite;
}

@keyframes pulseOpacity {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Priority text colors */
.footer-marquee .marquee-item .text-warning {
    color: #fbbf24 !important;
}

.footer-marquee .marquee-item .text-info {
    color: #60a5fa !important;
}

.footer-marquee .marquee-item .text-light {
    color: #e2e8f0 !important;
}


.news-list-item .d-flex.gap-3 {
    background: #f8f9fc;
    padding: 8px 12px;
    border-radius: 8px;
    margin-top: 10px;
}

.news-list-item .d-flex.gap-3 small {
    font-size: 0.7rem;
}

.news-list-item .d-flex.gap-3 i {
    opacity: 0.7;
}

/* ============================================
   FAQ SECTION (Tambahan - belum ada di file manapun)
   ============================================ */

.faq-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 80px 0;
}

.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 4px;
}

.section-subtitle {
    font-size: 1rem;
    color: #64748b;
    max-width: 600px;
    margin: 20px auto 0;
}

/* Accordion Custom */
.faq-section .accordion-item {
    background: white;
    border-radius: 16px !important;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    border: none;
    margin-bottom: 16px;
}

.faq-section .accordion-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.faq-section .accordion-button {
    font-weight: 600;
    color: #1e293b;
    background: white;
    padding: 20px 25px;
    font-size: 1rem;
    border-radius: 16px !important;
}

.faq-section .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    border-radius: 16px 16px 0 0 !important;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.faq-section .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.faq-section .accordion-body {
    padding: 25px;
    background: #f8fafc;
    color: #475569;
    line-height: 1.7;
    font-size: 0.95rem;
    border-top: 1px solid #eef2f6;
}

/* FAQ Button */
.faq-section .btn-outline-primary {
    padding: 12px 32px;
    border-radius: 40px;
    font-weight: 600;
    border: 2px solid #3b82f6;
    color: #3b82f6;
    background: transparent;
    transition: all 0.3s ease;
}

.faq-section .btn-outline-primary:hover {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
    .top-bar {
        display: none;
    }
    
    .mobile-logo {
        display: block;
    }
    
    #mainNav .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        z-index: 1000;
        border-radius: 0 0 10px 10px;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    #mainNav .navbar-nav {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    
    #mainNav .nav-item {
        width: 100%;
        border-bottom: 1px solid #e9ecef;
    }
    
    #mainNav .nav-link {
        padding: 12px 15px !important;
        font-size: 0.9rem;
    }
    
    .dropdown-menu {
        position: static;
        width: 100%;
        background: #f8f9fc;
        box-shadow: none;
        padding-left: 20px;
    }
    
    .dropdown-item {
        padding: 10px 15px;
    }
    
    .search-box {
        width: 100%;
        margin-top: 15px;
    }
    
    .shortcut-description {
        font-size: 10px;
    }
}

@media (max-width: 768px) {
    .carousel-title {
        font-size: 1.75rem;
    }
    
    .carousel-description {
        font-size: 0.9rem;
    }
    .footer-info-section {
        margin: 20px 0 30px;
        padding: 20px 0;
    }
    
    .info-card {
        padding: 15px 18px;
        gap: 12px;
        margin-bottom: 15px;
    }
    
    .info-card i {
        font-size: 2rem;
    }
    
    .info-card-content h6 {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    .info-card-content p {
        font-size: 0.75rem;
    }
    
    .footer-marquee {
        padding: 10px 0;
    }
    
    .footer-marquee .marquee-label {
        padding: 5px 12px;
        font-size: 0.7rem;
        margin-bottom: 10px;
    }
    
    .footer-marquee .marquee-content {
        animation-duration: 25s;
        font-size: 0.8rem;
    }
    
    .footer-marquee .marquee-item {
        margin-right: 15px;
        padding: 3px 10px;
    }
    
    .footer-marquee .marquee-item .date {
        font-size: 0.65rem;
        padding: 1px 6px;
    }
    
    .footer-marquee .separator {
        margin-left: 15px;
    }    
    .faq-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .faq-section .accordion-button {
        padding: 15px 20px;
        font-size: 0.9rem;
    }
    
    .faq-section .accordion-body {
        padding: 18px;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .shortcut-img {
        width: 45px;
        height: 45px;
    }
    
    .shortcut-icon i {
        font-size: 36px;
    }
    
    .carousel-title {
        font-size: 1.25rem;
    }
    
    .carousel-description {
        display: none;
    }
    .footer-info-section .col-12 {
        margin-bottom: 15px;
    }
    
    .info-card {
        padding: 12px 15px;
    }
    
    .info-card i {
        font-size: 1.5rem;
    }
    
    .info-card-content h6 {
        font-size: 0.85rem;
    }
    
    .footer-marquee .marquee-label span {
        font-size: 0.65rem;
    }
    
    .footer-marquee .marquee-content {
        animation-duration: 20s;
        font-size: 0.7rem;
    }
    
    .footer-marquee .marquee-item {
        margin-right: 10px;
        padding: 2px 8px;
    }
    
    .footer-marquee .marquee-item .date {
        display: none;
    }    
    .news-list-item .d-flex.justify-content-between {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 10px;
    }
    
    .news-list-item .d-flex.gap-3 {
        flex-wrap: wrap;
    }
    .section-title {
        font-size: 1.3rem;
    }
    
    .section-subtitle {
        font-size: 0.85rem;
    }
}