/* Root Variables */
:root {
    --primary-blue: #5BA3D0;
    --dark-blue: #1E3A5F;
    --plate-yellow: #FFD500;
    --plate-blue: #003399;
    --success-green: #28a745;
    --error-red: #dc3545;
    --warning-orange: #ff9800;
    --gradient-start: #f5f7fa;
    --gradient-end: #e9ecef;
    --button-gradient-start: #2d3561;
    --button-gradient-end: #1a1f3a;
    --fun-pink: #f093fb;
    --fun-blue: #4facfe;
}

/* Base Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
    min-height: 100vh;
    color: #333;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="pattern" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23pattern)"/></svg>') repeat;
    pointer-events: none;
    z-index: 1;
}

/* Main Content */
main {
    position: relative;
    z-index: 5;
    background-image: url('/bg.jpg');
    background-image: 
        linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0)),
        url('/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: calc(100vh - 200px);
}

/* WebP support */
.webp main {
    background-image: 
        linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0)),
        url('/bg.webp');
}

main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(91, 163, 208, 0.1) 0%, 
        rgba(240, 147, 251, 0.1) 25%, 
        rgba(79, 172, 254, 0.1) 50%, 
        rgba(255, 213, 0, 0.1) 75%, 
        rgba(91, 163, 208, 0.1) 100%);
    background-size: 400% 400%;
    animation: gradient-shift 15s ease infinite;
    pointer-events: none;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Content containers with backdrop */
.content-backdrop {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
}

.form-backdrop {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15),
                0 0 80px rgba(255, 255, 255, 0.5);
    margin-bottom: 1.5rem;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 3px solid transparent;
    background-clip: padding-box;
    position: relative;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

header::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #5BA3D0, #2d3561, #1a1f3a);
}

.logo {
    max-width: 200px;
    height: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05) rotate(-2deg);
}

/* UK License Plate Input - Complete Redesign */
.plate-input-wrapper {
    max-width: 500px;
    margin: 0 auto;
}

.uk-plate {
    display: table;
    width: 100%;
    height: 68px;
    background-color: #FFD500;
    border: 3px solid #000;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3),
                0 0 40px rgba(255, 255, 255, 0.8);
    font-family: 'Arial Black', Arial, sans-serif;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 5;
}

.uk-plate:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0,0,0,0.35),
                0 0 50px rgba(255, 255, 255, 0.9);
}

.uk-plate.typing {
    animation: plate-glow 2s ease-in-out infinite;
}

@keyframes plate-glow {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(0,0,0,0.3),
                    0 0 40px rgba(255, 255, 255, 0.8),
                    inset 0 0 20px rgba(255, 213, 0, 0.1);
    }
    50% {
        box-shadow: 0 8px 35px rgba(0,0,0,0.4),
                    0 0 60px rgba(255, 255, 255, 1),
                    0 0 100px rgba(91, 163, 208, 0.4),
                    inset 0 0 30px rgba(255, 213, 0, 0.2);
        transform: scale(1.02);
    }
}

.gb-section {
    display: table-cell;
    vertical-align: middle;
    width: 65px;
    background-color: #003399;
    border-right: 3px solid #000;
    text-align: center;
    padding: 8px 0;
}

.gb-section img {
    display: block;
    width: 32px;
    height: 16px;
    margin: 0 auto 3px;
}

.gb-section span {
    display: block;
    color: white;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 1px;
}

.plate-input {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    font-size: 42px;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #000;
    padding: 0 20px;
}

.plate-input::placeholder {
    color: #999;
    opacity: 0.6;
}

/* Modern title styles */
h1 {
    color: #2d3561;
    font-weight: 600;
}

.text-muted {
    color: #495057 !important; /* Better contrast ratio */
}

/* Result anchor links styling */
.result-card a.text-primary {
    color: #0066cc !important;
    text-decoration: underline;
    transition: all 0.2s ease;
    cursor: pointer;
    position: relative;
    z-index: 10;
    display: inline-block;
}

.result-card a.text-primary:hover {
    color: #0052a3 !important;
    text-decoration: underline;
    transform: translateX(2px);
}

.result-card a.text-primary:active {
    color: #003d7a !important;
}

/* Ensure the links container is interactive */
.result-card .mt-4.p-3.bg-light {
    position: relative;
    z-index: 5;
}

/* Mobile adjustments */
@media (max-width: 576px) {
    .logo {
        max-width: 150px;
    }
    
    .uk-plate {
        height: 56px;
    }
    
    .gb-section {
        width: 50px;
        padding: 0;
        height: 100%;
    }
    
    .gb-section img {
        width: 24px;
        height: 12px;
        margin-bottom: 2px;
    }
    
    .gb-section span {
        font-size: 14px;
    }
    
    .plate-input {
        font-size: 24px;
        letter-spacing: 2px;
        padding: 0 10px;
        height: 100%;
        line-height: 56px;
    }
    
    .form-backdrop,
    .content-backdrop {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

/* Form styling for consistent button width */
#carCheckForm {
    max-width: 500px;
    margin: 0 auto;
}

.button-wrapper {
    margin-top: 1.5rem;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--button-gradient-start) 0%, var(--button-gradient-end) 100%) !important;
    border: none !important;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(45, 53, 97, 0.4),
                0 0 40px rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    color: #fff !important;
}

/* Secondary button style for "Check Another Car" */
.btn-secondary-custom {
    background: linear-gradient(135deg, #FFD500 0%, #f0c800 100%) !important;
    border: 2px solid #000 !important;
    font-weight: 900;
    font-size: 1.25rem;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(255, 213, 0, 0.4),
                0 0 40px rgba(255, 213, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    color: #000 !important;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(45, 53, 97, 0.5);
    background: linear-gradient(135deg, #3d4571 0%, #2a2f4a 100%) !important;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 4px 15px rgba(45, 53, 97, 0.4);
}

.btn-primary:disabled {
    opacity: 0.6;
    transform: none;
    box-shadow: none;
}

/* Secondary button hover and active states */
.btn-secondary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.btn-secondary-custom:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 213, 0, 0.5),
                0 0 50px rgba(255, 213, 0, 0.4);
    background: linear-gradient(135deg, #ffe033 0%, #FFD500 100%) !important;
}

.btn-secondary-custom:hover::before {
    left: 100%;
}

.btn-secondary-custom:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 4px 15px rgba(255, 213, 0, 0.4);
}

/* Pulse animation for button */
@keyframes pulse {
    0% {
        box-shadow: 0 6px 20px rgba(45, 53, 97, 0.4);
    }
    50% {
        box-shadow: 0 6px 30px rgba(45, 53, 97, 0.6);
    }
    100% {
        box-shadow: 0 6px 20px rgba(45, 53, 97, 0.4);
    }
}

.btn-primary:not(:disabled) {
    animation: pulse 2s infinite;
}

.btn-secondary-custom {
    animation: pulse-inviting 2s infinite;
}

@keyframes pulse-inviting {
    0% {
        box-shadow: 0 6px 20px rgba(255, 213, 0, 0.4),
                    0 0 40px rgba(255, 213, 0, 0.3);
    }
    50% {
        box-shadow: 0 6px 30px rgba(255, 213, 0, 0.6),
                    0 0 60px rgba(255, 213, 0, 0.5);
    }
    100% {
        box-shadow: 0 6px 20px rgba(255, 213, 0, 0.4),
                    0 0 40px rgba(255, 213, 0, 0.3);
    }
}

/* Loading State - Animated Car */
.loading-spinner {
    display: none; /* Hide the old spinner */
}

.car-loader {
    display: inline-block;
    width: 100px;
    height: 50px;
    position: relative;
    margin: 0 auto;
}

.car-loader .car {
    position: absolute;
    width: 60px;
    height: 30px;
    bottom: 0;
    left: -60px;
    animation: drive 2s ease-in-out infinite;
}

.car-loader .car-body {
    position: absolute;
    width: 60px;
    height: 20px;
    background: linear-gradient(135deg, #2d3561 0%, #1a1f3a 100%);
    border-radius: 10px 10px 5px 5px;
    bottom: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.car-loader .car-body::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 12px;
    background: rgba(255,255,255,0.8);
    border-radius: 3px;
    top: 3px;
    left: 10px;
    box-shadow: 20px 0 rgba(255,255,255,0.8);
}

.car-loader .car-body::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #FFD500;
    border-radius: 50%;
    bottom: -4px;
    left: 45px;
    box-shadow: 0 0 10px #FFD500;
    animation: blink 1s ease-in-out infinite;
}

.car-loader .wheel {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #333;
    border-radius: 50%;
    bottom: 0;
    border: 2px solid #666;
    animation: wheelRotate 0.5s linear infinite;
}

.car-loader .wheel-front {
    left: 40px;
}

.car-loader .wheel-back {
    left: 8px;
}

.car-loader .road {
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        #666 0px,
        #666 10px,
        transparent 10px,
        transparent 20px
    );
    animation: road-move 0.5s linear infinite;
}

@keyframes drive {
    0% {
        left: -60px;
        transform: translateY(0);
    }
    25% {
        transform: translateY(-2px);
    }
    50% {
        left: 100px;
        transform: translateY(0);
    }
    75% {
        transform: translateY(-1px);
    }
    100% {
        left: -60px;
        transform: translateY(0);
    }
}

@keyframes wheelRotate {
    to {
        transform: rotate(360deg);
    }
}

@keyframes road-move {
    to {
        background-position: -20px 0;
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

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

/* Results Section */
.result-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
    animation: slideIn 0.5s ease-out;
    color: #212529;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.result-card.result-likely {
    animation: slideIn 0.5s ease-out;
}

.result-card.result-unlikely {
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px) rotateX(-10deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}


.result-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 3s infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes shimmer {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.result-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.result-icon {
    width: 80px;
    height: 80px;
    margin-right: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 40px;
    position: relative;
}

/* Success animation */
@keyframes bounceIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.result-likely .result-icon {
    background: #f8f9fa;
    color: #0066cc;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.result-unlikely .result-icon {
    background: #f8f9fa;
    color: #dc3545;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


.result-title {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3561;
}

.result-subtitle {
    margin: 0 auto 16px auto;
    color: #000000;
    font-size: 1.5rem;
    font-weight: 900;
    font-family: 'Arial Black', Arial, sans-serif;
    background-color: #FFD500;
    padding: 8px 20px;
    border: 3px solid #000000;
    border-radius: 4px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.result-details {
    background-color: #f8f9fa;
    border-radius: 6px;
    padding: 1rem;
    margin-top: 1rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 500;
    color: #495057;
}

.detail-value {
    font-weight: 600;
    color: #212529;
}

/* Error States */
.alert-custom {
    border-radius: 6px;
    padding: 1rem;
    margin-top: 1rem;
}

/* Footer */
footer {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 10;
}

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

/* Focus states */
.plate-input:focus {
    outline: 3px solid #5BA3D0;
    outline-offset: 2px;
    background-color: rgba(91, 163, 208, 0.1);
}

.btn:focus {
    outline: 3px solid #5BA3D0;
    outline-offset: 2px;
    box-shadow: 0 0 0 0.25rem rgba(91, 163, 208, 0.25);
}

a:focus {
    outline: 3px solid #5BA3D0;
    outline-offset: 2px;
}

/* Skip navigation link */
.skip-nav {
    position: absolute;
    left: -9999px;
    z-index: 999;
    padding: 1em;
    background-color: #2d3561;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
}

.skip-nav:focus {
    left: 50%;
    transform: translateX(-50%);
    top: 10px;
}

/* Validation states */
.plate-input.is-invalid {
    box-shadow: inset 0 0 0 3px #dc3545;
}

.plate-input[aria-invalid="true"] {
    box-shadow: inset 0 0 0 3px #dc3545;
}

/* Print styles */
@media print {
    header, footer, .btn {
        display: none;
    }
    
    .result-card {
        box-shadow: none;
        border: 1px solid #dee2e6;
    }
}


/* Particle Burst Effect */
.particle-burst {
    position: fixed;
    pointer-events: none;
    z-index: 10000;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    animation: particle-explode 0.8s ease-out forwards;
}

@keyframes particle-explode {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}



/* Exemption Cards */
.exemption-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(91, 163, 208, 0.2);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.exemption-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(91, 163, 208, 0.4);
}

.exemption-card h3 {
    color: var(--dark-blue);
    font-weight: 600;
}

.exemption-card p {
    margin-bottom: 0;
    line-height: 1.6;
}

.exemption-card a {
    color: #0066cc; /* Better contrast */
    text-decoration: underline;
    font-weight: 500;
}

.exemption-card a:hover {
    text-decoration: underline;
}

/* Exemption Table */
.exemption-table {
    background: rgba(248, 249, 250, 0.8);
    border-radius: 12px;
    padding: 2rem;
}

.exemption-table table {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.exemption-table th {
    background: var(--dark-blue);
    color: white;
    font-weight: 600;
    padding: 0.75rem;
    border: none;
}

.exemption-table td {
    padding: 0.75rem;
    border-color: #e9ecef;
}

/* Controversy Sections */
.controversy-section {
    background: rgba(248, 249, 250, 0.6);
    border-left: 4px solid var(--primary-blue);
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    border-radius: 0 8px 8px 0;
    transition: all 0.3s ease;
}

.controversy-section:hover {
    background: rgba(248, 249, 250, 0.9);
    transform: translateX(3px);
}

.controversy-section h3 {
    color: var(--dark-blue);
    font-weight: 600;
}

.controversy-section ul {
    margin-bottom: 0;
    padding-left: 1.5rem;
}

.controversy-section li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.controversy-section li:last-child {
    margin-bottom: 0;
}

.controversy-section a {
    color: #0066cc; /* Better contrast */
    text-decoration: underline;
    font-weight: 500;
}

.controversy-section a:hover {
    text-decoration: underline;
}

/* Custom Toast Notifications */
.toast-container {
    z-index: 1080 !important;
}

.toast {
    border: none !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    border-radius: 12px !important;
    overflow: hidden;
    background: white !important;
    min-width: 350px;
    margin-bottom: 1rem;
}

.toast-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%) !important;
    color: white !important;
    border-bottom: none !important;
    padding: 14px 16px !important;
    border-radius: 12px 12px 0 0 !important;
    font-size: 0.95rem;
}

.toast-header.bg-warning {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%) !important;
}

.toast-header.bg-danger {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%) !important;
}

.toast-header.bg-info {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%) !important;
}

.toast-header strong {
    font-weight: 600 !important;
    font-size: 1rem !important;
    letter-spacing: 0.5px;
}

.toast-header .btn-close {
    background-color: transparent !important;
    opacity: 0.8 !important;
    filter: brightness(0) invert(1) !important;
    padding: 0.25rem !important;
}

.toast-header .btn-close:hover {
    opacity: 1 !important;
}

.toast-body {
    padding: 16px !important;
    color: #2c3e50 !important;
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
    background: white !important;
    font-weight: 400;
}

/* Toast animation override */
.toast.showing {
    animation: toastSlideIn 0.3s ease-out;
}

@keyframes toastSlideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Statistical Analysis Section */
.statistical-analysis {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.statistical-analysis h3 {
    font-weight: 600;
    color: var(--primary-blue);
}

.statistical-analysis .alert {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border: 1px solid #90caf9;
    border-radius: 8px;
}

.statistical-analysis .h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.statistical-analysis ul {
    padding-left: 1.5rem;
}

.statistical-analysis ul li {
    margin-bottom: 0.5rem;
}