    header {
        position: relative;
        top: auto;
        z-index: auto;
        background-color: #0B1F33;
        transition: transform 0.3s ease-in-out;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 0.5rem 0.5rem;
    }

    header img {
        display: block;
        width: 100%;
        height: auto;
    }

    header.hide {
        transform: translateY(-100%);
    }

    body {
        background-color: #f8f9fa;
    }

    .main-container {
        max-width: 90%;
        margin: 0 auto;
        padding: 1rem 1rem;
    }

    .main-container .row {
        margin-left: 0;
        margin-right: 0;
    }

    .btn-primary {
        background-color: #F58020;
        border-color: #F58020;
    }

    .btn-primary:hover,
    .btn-outline-primary:hover {
        background-color: #FF8C42;
        border-color: #FF8C42;
        color: white;
    }

    .btn-outline-primary {
        border-color: #F58020;
        color: #F58020;
    }

    .form-control,
    .form-select {
        background-color: #ffffff;
        color: #0B1F33;
        border: 1px solid #1D2E40;
    }

    .form-control::placeholder {
        color: #999;
    }

    .card {
        background-color: #ffffff;
        color: #0B1F33;
    }

    .card-text {
        white-space: pre-line;
    }

    .card-text * {
        margin-left: 0;
        padding-left: 0;
    }

    .text-orange {
        color: #F58020;
    }

    .form-section {
        background-color: #0B1F33;
        border-radius: 0.5rem;
        padding: 1rem;
        color: white;
    }

    .results-stats {
        display: flex;
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .results-stats h6,
    .results-stats p {
        margin-bottom: 0;
        text-transform: uppercase;
        color: #6c757d;
        text-align: center;
    }

    footer {
        background-color: #0B1F33;
        color: #ccc;
        text-align: center;
        padding: 1rem 0;
        font-size: 0.9rem;
        margin-top: 3rem;
    }

    .footer-link {
        color: #F58020;
        text-decoration: none;
    }

    .footer-link:hover {
        color: #FF8C42;
    }

    @media (max-width: 576px) {
        .form-section .row.g-3>* {
            flex: 0 0 100%;
            max-width: 100%;
        }

        .btn {
            width: 100%;
            margin-bottom: 0.5rem;
        }

        .results-stats {
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
        }

        .card-title {
            font-size: 1.1rem;
        }

        .card-subtitle,
        .card-text,
        .badge,
        .btn-sm {
            font-size: 0.85rem;
        }
    }