
html {
    scroll-behavior: smooth;
    box-sizing: border-box;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #2A3342;
}


h1, h2, h3, h4, h5, h6 {
    color: #3A4F66;
}


.perspective {
    perspective: 1000px;
}

.rotate-y-10 {
    transform: rotateY(10deg);
}

.rotate-x-5 {
    transform: rotateX(5deg);
}

.hover\:rotate-y-0:hover {
    transform: rotateY(0deg);
}

.hover\:rotate-x-0:hover {
    transform: rotateX(0deg);
}


input, select, textarea {
    border: 1px solid #E5E7EB;
    border-radius: 0.375rem;
    padding: 0.75rem 1rem;
    width: 100%;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

input:focus, select:focus, textarea:focus {
    border-color: #3A4F66;
    box-shadow: 0 0 0 3px rgba(58, 79, 102, 0.1);
}


button, .button {
    transition: all 0.3s ease;
}

button:focus, .button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(58, 79, 102, 0.3);
}


.swiper-pagination-bullet {
    background: #3A4F66;
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #D67D5B;
}


#cookie-consent-banner.show {
    transform: translateY(0);
}


.mobile-menu {
    transition: all 0.3s ease;
}


input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 1rem;
    height: 1rem;
    border: 1px solid #E5E7EB;
    border-radius: 0.25rem;
    margin: 0;
    display: grid;
    place-content: center;
    cursor: pointer;
}

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

input[type="checkbox"]:checked::before {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    transform: scale(1);
    box-shadow: inset 1em 1em white;
    transform-origin: center;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

input[type="checkbox"]:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(58, 79, 102, 0.2);
}


.iti {
    width: 100%;
}

.iti__flag-container {
    z-index: 10;
}


@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .perspective {
        perspective: 600px;
    }
}


[data-aos] {
    pointer-events: auto !important;
}


.prose h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.prose h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.prose p {
    margin-bottom: 1.25rem;
}

.prose ul {
    margin-top: 0.75rem;
    margin-bottom: 1.25rem;
}

.prose li {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}


a:focus, button:focus {
    outline: 2px solid #D67D5B;
    outline-offset: 2px;
}

a:focus:not(:focus-visible), button:focus:not(:focus-visible) {
    outline: none;
}

a:focus-visible, button:focus-visible {
    outline: 2px solid #D67D5B;
    outline-offset: 2px;
}