:root {
    --csc-blue: #003f87;
    --csc-blue-dark: #002a5c;
    --csc-blue-light: #0056b3;
    --csc-gold: #f4a623;
    --csc-gold-light: #ffb84d;
    --success-green: #28a745;
    --info-blue: #17a2b8;
    --warning-orange: #ff9800;
    --danger-red: #dc3545;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-600: #666;
    --gray-700: #555;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.18);
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    line-height: 1.8;
    font-size: 16px;
    background: #ffffff;
    overflow-x: hidden;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

/* Selection Style */
::selection {
    background: var(--csc-blue);
    color: white;
}

::-moz-selection {
    background: var(--csc-blue);
    color: white;
}

/* ==========================================
   HERO SECTION - Enhanced
   ========================================== */
.hero-section {
    background: linear-gradient(135deg, var(--csc-blue) 0%, var(--csc-blue-light) 50%, #1e5ba8 100%);
    color: white;
    padding: 80px 0 60px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease;
}

.hero-section h3 {
    font-size: clamp(1.2rem, 3vw, 1.75rem);
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 15px;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-section p {
    animation: fadeInUp 0.8s ease 0.3s backwards;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.hero-section hr {
    animation: scaleIn 0.6s ease 0.4s backwards;
}

.last-updated {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    display: inline-block;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all var(--transition-base);
}

.last-updated:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* ==========================================
   SIDEBAR NAVIGATION - Enhanced
   ========================================== */
.sidebar {
    position: sticky;
    top: 20px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
}

.sidebar::-webkit-scrollbar {
    width: 6px;
}

.sidebar::-webkit-scrollbar-track {
    background: var(--gray-100);
    border-radius: 10px;
}

.sidebar::-webkit-scrollbar-thumb {
    background: var(--csc-blue);
    border-radius: 10px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background: var(--csc-blue-dark);
}

.sidebar nav {
    background: white;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.sidebar h6 {
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    padding: 0 15px;
    color: var(--gray-600);
}

.nav-link {
    color: var(--gray-700);
    padding: 12px 18px;
    border-radius: 8px;
    transition: all var(--transition-base);
    font-size: 0.95rem;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--csc-blue);
    transform: scaleY(0);
    transition: transform var(--transition-base);
}

.nav-link:hover {
    background: linear-gradient(90deg, var(--csc-blue) 0%, var(--csc-blue-light) 100%);
    color: white;
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.nav-link:hover::before {
    transform: scaleY(1);
}

.nav-link.active {
    background: linear-gradient(90deg, var(--csc-blue) 0%, var(--csc-blue-light) 100%);
    color: white;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.nav-link.active::before {
    transform: scaleY(1);
}

.nav-link i {
    margin-right: 10px;
    font-size: 1.1rem;
    transition: transform var(--transition-base);
}

.nav-link:hover i {
    transform: scale(1.15);
}

/* ==========================================
   CONTENT SECTIONS - Enhanced
   ========================================== */
.content-section {
    margin-bottom: 70px;
    animation: fadeIn 0.6s ease;
}

.content-section:last-child {
    margin-bottom: 40px;
}

.content-section h2 {
    color: var(--csc-blue);
    font-weight: 700;
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 4px solid var(--csc-gold);
    position: relative;
    display: inline-block;
    width: 100%;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--csc-blue);
    border-radius: 2px;
}

.content-section h2 i {
    margin-right: 12px;
    color: var(--csc-gold);
}

.content-section h3 {
    color: var(--csc-blue);
    font-weight: 600;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-top: 40px;
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 4px solid var(--csc-gold);
}

.content-section h4 {
    color: var(--gray-700);
    font-weight: 600;
    font-size: clamp(1.05rem, 2.5vw, 1.25rem);
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-section h5 {
    color: var(--csc-blue);
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 25px;
    margin-bottom: 12px;
}

.content-section h6 {
    color: var(--csc-blue);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 10px;
}

.content-section p {
    margin-bottom: 18px;
    line-height: 1.8;
    color: #444;
}

.content-section ul,
.content-section ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.content-section li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #444;
}

/* Custom List Styles */
.content-section ul li {
    position: relative;
}

.content-section ul li::marker {
    color: var(--csc-blue);
    font-weight: bold;
}

/* ==========================================
   CARDS - Enhanced
   ========================================== */
.card {
    transition: all var(--transition-base);
    border: none;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card-body {
    padding: 25px;
}

.card-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.card-title i {
    margin-right: 10px;
    font-size: 1.3rem;
}

.card-text {
    color: var(--gray-700);
    line-height: 1.7;
}

/* Card Variants */
.card.border-0.shadow-sm {
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.card.border-0.shadow-sm:hover {
    border-color: var(--csc-blue-light);
}

/* ==========================================
   ALERTS & INFO BOXES - Enhanced
   ========================================== */
.alert-info-custom {
    background: linear-gradient(135deg, #e3f2fd 0%, #e8f4fd 100%);
    border-left: 5px solid var(--csc-blue);
    padding: 25px 30px;
    border-radius: 10px;
    margin: 25px 0;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.alert-info-custom:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(3px);
}

.alert {
    border-radius: 10px;
    padding: 20px 25px;
    margin: 20px 0;
    border: none;
    box-shadow: var(--shadow-sm);
}

.alert-info {
    background: linear-gradient(135deg, #e3f2fd 0%, #e8f4fd 100%);
    border-left: 5px solid var(--info-blue);
    color: #0c5460;
}

.alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #d9f0dd 100%);
    border-left: 5px solid var(--success-green);
    color: #155724;
}

.alert-warning {
    background: linear-gradient(135deg, #fff3cd 0%, #fff8d7 100%);
    border-left: 5px solid var(--warning-orange);
    color: #856404;
}

.alert-danger {
    background: linear-gradient(135deg, #f8d7da 0%, #fadbe0 100%);
    border-left: 5px solid var(--danger-red);
    color: #721c24;
}

.alert h5,
.alert h6 {
    margin-bottom: 12px;
    font-weight: 600;
}

.alert h5 i,
.alert h6 i {
    margin-right: 8px;
}

.highlight-box {
    background: linear-gradient(135deg, var(--gray-100) 0%, #f0f2f5 100%);
    padding: 25px 30px;
    border-radius: 12px;
    border: 2px solid var(--gray-300);
    margin: 25px 0;
    box-shadow: var(--shadow-sm);
}

.highlight-box h5 {
    color: var(--csc-blue);
    font-weight: 600;
    margin-bottom: 15px;
}

/* ==========================================
   COOKIE CARDS - Enhanced
   ========================================== */
.cookie-card {
    background: white;
    border-radius: 12px;
    margin-bottom: 18px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

.cookie-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.cookie-header {
    background: linear-gradient(90deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 22px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-base);
    user-select: none;
}

.cookie-header:hover {
    background: linear-gradient(90deg, #e9ecef 0%, #dee2e6 100%);
}

.cookie-title-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cookie-title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--gray-700);
}

.cookie-icon {
    font-size: 1.6rem;
    color: var(--csc-blue);
    transition: transform var(--transition-base);
}

.cookie-header:hover .cookie-icon {
    transform: scale(1.1);
}

.toggle-icon {
    transition: transform var(--transition-base);
    color: var(--csc-blue);
    font-size: 1.2rem;
}

.toggle-icon.rotated {
    transform: rotate(180deg);
}

.cookie-body {
    padding: 25px;
    max-height: 600px;
    transition: max-height var(--transition-slow), padding var(--transition-base);
    overflow: hidden;
}

.cookie-body.collapsed {
    max-height: 0;
    padding: 0 25px;
}

.cookie-badge {
    font-size: 0.8rem;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
}

.badge-success {
    background: var(--success-green);
    color: white;
}

.badge-info {
    background: var(--info-blue);
    color: white;
}

/* ==========================================
   DATA CATEGORIES & TABLES - Enhanced
   ========================================== */
.data-category {
    margin-bottom: 20px;
    padding: 18px 22px;
    background: linear-gradient(135deg, var(--gray-100) 0%, #f5f7f9 100%);
    border-left: 4px solid var(--csc-blue);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.data-category:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
    border-left-width: 6px;
}

.data-category strong {
    color: var(--csc-blue);
    font-size: 1.05rem;
    display: block;
    margin-bottom: 8px;
}

.data-table {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    margin: 25px 0;
    border: 1px solid var(--gray-200);
}

.data-table h4 {
    color: var(--csc-blue);
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gray-200);
}

/* ==========================================
   NUMBERED SECTIONS - Enhanced
   ========================================== */
.numbered-section {
    margin: 30px 0;
}

.numbered-item {
    background: white;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--csc-blue);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    counter-increment: numbered-item;
    position: relative;
}

.numbered-item::before {
    content: counter(numbered-item);
    position: absolute;
    left: -15px;
    top: 20px;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--csc-blue) 0%, var(--csc-blue-light) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: var(--shadow-md);
}

.numbered-section {
    counter-reset: numbered-item;
}

.numbered-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.numbered-item h5 {
    color: var(--csc-blue);
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: 12px;
    margin-left: 35px;
}

.numbered-item p {
    margin-left: 35px;
}

/* ==========================================
   PROHIBITION ITEMS - Enhanced
   ========================================== */
.prohibition-item {
    background: white;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--danger-red);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.prohibition-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(3px);
    border-left-width: 6px;
}

.prohibition-item h6 {
    color: var(--danger-red);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.prohibition-item h6 i {
    margin-right: 8px;
}

.prohibition-item ul {
    margin-bottom: 0;
}

/* ==========================================
   CONTACT CARD - Enhanced
   ========================================== */
.contact-card-modern {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.contact-content {
    animation: fadeInUp 0.6s ease;
}

.contact-icon-wrapper {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--csc-blue) 0%, var(--csc-blue-light) 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    margin-bottom: 20px;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
}

.contact-icon-wrapper:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-xl);
}

.contact-card-modern h4 {
    color: var(--csc-blue);
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-card-modern h5 {
    color: var(--csc-blue);
    font-weight: 600;
    margin-bottom: 12px;
}

.contact-card-modern h6 {
    color: var(--csc-blue);
    font-weight: 600;
    margin-bottom: 15px;
}

.btn-contact {
    background: linear-gradient(135deg, var(--csc-blue) 0%, var(--csc-blue-light) 100%);
    color: white;
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-base);
    text-decoration: none;
    display: inline-block;
    box-shadow: var(--shadow-md);
    border: none;
}

.btn-contact:hover {
    background: linear-gradient(135deg, var(--csc-blue-dark) 0%, var(--csc-blue) 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-contact i {
    margin-right: 8px;
}

/* ==========================================
   FOOTER - Enhanced
   ========================================== */
footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ecf0f1;
    padding: 40px 0;
    margin-top: 80px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

footer p {
    margin-bottom: 0;
    line-height: 1.6;
}

footer a {
    color: #ecf0f1;
    text-decoration: none;
    transition: all var(--transition-base);
    position: relative;
}

footer a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--csc-gold);
    transition: width var(--transition-base);
}

footer a:hover {
    color: white;
    transform: translateX(3px);
}

footer a:hover::after {
    width: 100%;
}

footer i {
    margin-right: 6px;
}

/* ==========================================
   BACK TO TOP BUTTON - Enhanced
   ========================================== */
.back-to-top {
    position: fixed;
    bottom: 35px;
    right: 35px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--csc-blue) 0%, var(--csc-blue-light) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    font-size: 1.5rem;
}

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

.back-to-top:hover {
    background: linear-gradient(135deg, var(--csc-blue-dark) 0%, var(--csc-blue) 100%);
    transform: translateY(-8px) rotate(360deg);
    box-shadow: var(--shadow-xl);
}

.back-to-top::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    animation: pulse 2s infinite;
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.text-muted {
    color: var(--gray-600) !important;
}

.small {
    font-size: 0.9rem;
}

.fw-bold {
    font-weight: 700;
}

.mb-0 {
    margin-bottom: 0 !important;
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0;
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Loading Shimmer Effect */
.loading-shimmer {
    animation: shimmer 2s infinite;
    background: linear-gradient(
        90deg,
        var(--gray-200) 0%,
        var(--gray-100) 50%,
        var(--gray-200) 100%
    );
    background-size: 1000px 100%;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 992px) {
    .sidebar {
        position: relative;
        top: 0;
        margin-bottom: 40px;
        max-height: none;
    }

    .hero-section {
        padding: 60px 0 40px;
    }

    .content-section {
        margin-bottom: 50px;
    }

    .contact-card-modern {
        padding: 40px 30px;
    }

    .numbered-item::before {
        position: static;
        margin-bottom: 15px;
    }

    .numbered-item h5,
    .numbered-item p {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 50px 0 30px;
        margin-bottom: 40px;
    }

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

    .content-section {
        margin-bottom: 40px;
    }

    .content-section h2 {
        font-size: 1.5rem;
    }

    .content-section h3 {
        font-size: 1.25rem;
    }

    .card-body {
        padding: 20px;
    }

    .contact-icon-wrapper {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .contact-card-modern {
        padding: 30px 20px;
    }

    .btn-contact {
        padding: 12px 28px;
        font-size: 0.95rem;
    }

    .back-to-top {
        width: 50px;
        height: 50px;
        bottom: 25px;
        right: 25px;
        font-size: 1.3rem;
    }

    .data-category {
        padding: 15px 18px;
    }

    .numbered-item,
    .prohibition-item {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    body {
        font-size: 15px;
    }

    .hero-section {
        padding: 40px 0 25px;
        margin-bottom: 30px;
    }

    .last-updated {
        font-size: 0.85rem;
        padding: 8px 18px;
    }

    .content-section {
        margin-bottom: 35px;
    }

    .content-section h2 {
        font-size: 1.35rem;
        margin-bottom: 20px;
    }

    .content-section h3 {
        font-size: 1.15rem;
        margin-top: 30px;
    }

    .sidebar nav {
        padding: 20px 15px;
    }

    .nav-link {
        padding: 10px 14px;
        font-size: 0.9rem;
    }

    .card-body {
        padding: 18px;
    }

    .alert,
    .alert-info-custom,
    .highlight-box {
        padding: 18px 20px;
    }

    .cookie-header {
        padding: 18px 20px;
    }

    .cookie-body {
        padding: 20px;
    }

    .data-table {
        padding: 20px;
    }

    .contact-card-modern {
        padding: 25px 18px;
    }

    .contact-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    footer {
        padding: 30px 0;
        margin-top: 60px;
    }
}

/* ==========================================
   PRINT STYLES
   ========================================== */
@media print {
    .sidebar,
    .back-to-top,
    footer {
        display: none !important;
    }

    .hero-section {
        background: var(--csc-blue) !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .content-section {
        page-break-inside: avoid;
    }

    .card,
    .alert,
    .data-category {
        page-break-inside: avoid;
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }

    a {
        text-decoration: underline;
    }
}

/* ==========================================
   ACCESSIBILITY IMPROVEMENTS
   ========================================== */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus Styles */
a:focus,
button:focus,
.nav-link:focus {
    outline: 3px solid var(--csc-gold);
    outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
        --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
        --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    }

    .card,
    .alert,
    .data-category,
    .numbered-item,
    .prohibition-item {
        border: 2px solid currentColor;
    }
}