
body {
    font-family: 'Raleway', sans-serif;
    color: #4A5568;
    line-height: 1.6;
}


.simplebar-scrollbar::before {
    background-color: #0A2463;
}


input[type="checkbox"].cookie-checkbox {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 40px;
    height: 20px;
    background: #CBD5E0;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s;
}

input[type="checkbox"].cookie-checkbox:checked {
    background: #0077CC;
}

input[type="checkbox"].cookie-checkbox::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: white;
    top: 2px;
    left: 2px;
    transition: left 0.3s;
}

input[type="checkbox"].cookie-checkbox:checked::before {
    left: 22px;
}


.faq-toggle .fa-chevron-down {
    transition: transform 0.3s ease;
}

.faq-toggle.active .fa-chevron-down {
    transform: rotate(180deg);
}


.iti {
    width: 100%;
}


html {
    scroll-behavior: smooth;
}


.transition {
    transition: all 0.3s ease;
}


#expenses-chart, #comparison-chart {
    position: relative;
}


.scenario-btn.active {
    background-color: #0A2463;
}


.tippy-box {
    background-color: #0A2463;
    color: white;
    border-radius: 4px;
    font-size: 14px;
}

.tippy-arrow {
    color: #0A2463;
}


button:focus, a:focus, input:focus, textarea:focus, select:focus {
    outline: 2px solid #0077CC;
    outline-offset: 2px;
}


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

#mobile-menu.show {
    display: block;
    animation: slideDown 0.3s ease forwards;
}


#cookie-banner {
    animation: slideUp 0.3s ease forwards;
}

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


.modal-enter {
    animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}


@media (max-width: 640px) {
    h1 {
        font-size: 1.875rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}


@media print {
    header, footer, .cookie-banner, #cookie-consent-modal {
        display: none !important;
    }
    
    body {
        background: white;
    }
    
    .container {
        width: 100%;
        max-width: 100%;
    }
}