
body {
    font-family: 'Figtree', sans-serif;
    color: #FFFFFF;
    background-color: #0A1128;
    line-height: 1.6;
}


html {
    scroll-behavior: smooth;
}


h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}


a:focus, button:focus, input:focus, textarea:focus, select:focus, [tabindex]:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.5);
}


.transition-colors {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.transition-transform {
    transition: transform 0.3s ease;
}


.group:hover .group-hover\:scale-105 {
    transform: scale(1.05);
}

.group:hover .group-hover\:scale-110 {
    transform: scale(1.1);
}


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

::-webkit-scrollbar-track {
    background: #0A1128;
}

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

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


.iti {
    width: 100%;
}


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


input:focus, textarea:focus, select:focus {
    border-color: #D4AF37;
    box-shadow: 0 0 0 1px #D4AF37;
}


input[type="checkbox"] {
    border-radius: 0.25rem;
    border-color: #6B7280;
}

input[type="checkbox"]:checked {
    background-color: #D4AF37;
    border-color: #D4AF37;
}


.keyboard-user :focus {
    outline: 2px solid #D4AF37;
    outline-offset: 2px;
}


.typed-cursor {
    color: #D4AF37;
    font-weight: 400;
    animation: blink 1s infinite;
}

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


@media (max-width: 768px) {
    h1 {
        font-size: 2.25rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .py-16 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}


@media print {
    body {
        background-color: white;
        color: black;
    }
    
    header, footer, #cookie-banner, #open-cookie-settings {
        display: none;
    }
    
    main, section, article {
        page-break-inside: avoid;
    }
    
    a {
        text-decoration: underline;
        color: #000;
    }
    
    .container {
        width: 100%;
        max-width: 100%;
    }
}