
body {
    font-family: 'Open Sans', sans-serif;
    color: #1F2937;
    line-height: 1.6;
}


.iti {
    width: 100%;
}


.cookie-checkbox {
    appearance: none;
    width: 50px;
    height: 26px;
    background: #e5e7eb;
    border-radius: 13px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-checkbox:checked {
    background: #1E40AF;
}

.cookie-checkbox::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s;
}

.cookie-checkbox:checked::after {
    left: 27px;
}


nav a {
    position: relative;
    transition: all 0.3s;
}

nav a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #1E40AF;
    bottom: -5px;
    left: 0;
    transition: width 0.3s;
}

nav a:hover:after,
nav a.active:after {
    width: 100%;
}


.btn-hover-effect {
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-hover-effect:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}


input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #1E40AF;
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}


.faq-toggle.active i {
    transform: rotate(180deg);
}


.card-hover {
    transition: transform 0.3s, box-shadow 0.3s;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}


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

.animate-fadeIn {
    animation: fadeIn 0.6s ease forwards;
}


::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}


a:focus, button:focus, input:focus, select:focus, textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.3);
}


footer a:hover {
    color: white;
    text-decoration: underline;
}


#mobile-menu {
    transition: max-height 0.3s ease-in-out;
    max-height: 0;
    overflow: hidden;
}

#mobile-menu.show {
    max-height: 400px;
}


@media print {
    header, footer, .no-print {
        display: none !important;
    }
    
    body, html {
        width: 100%;
        margin: 0;
        padding: 0;
        background: white;
        color: black;
    }
    
    a {
        text-decoration: none !important;
        color: black !important;
    }
}


@media (prefers-color-scheme: dark) {
    
}