
body {
    font-family: 'Roboto', sans-serif;
    color: #1E293B;
    line-height: 1.6;
}


.iti { 
    width: 100% 
}


button:focus, a:focus, input:focus, textarea:focus, select:focus {
    outline: 2px solid rgba(59, 130, 246, 0.5);
    outline-offset: 2px;
}


.transition {
    transition: all 0.3s ease;
}


.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}


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


input, textarea, select {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus, textarea:focus, select:focus {
    border-color: #3B82F6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
}


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

.hover-card-effect:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}


input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}


.custom-list {
    list-style: none;
    padding-left: 0;
}

.custom-list li {
    padding-left: 1.5rem;
    position: relative;
}

.custom-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3B82F6;
}


#cookie-banner {
    animation: slide-up 0.5s ease;
}

@keyframes slide-up {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}


.modal-animation {
    animation: fade-in 0.3s ease;
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


#copy-toast {
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

#copy-toast.show {
    opacity: 1;
    transform: translateY(0);
}


.button-hover-effect {
    position: relative;
    overflow: hidden;
}

.button-hover-effect:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.button-hover-effect:hover:after {
    opacity: 1;
}


@media print {
    header, footer, #cookie-banner, #cookie-settings-modal, button:not([type="submit"]) {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    main {
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    a {
        color: #1E293B !important;
        text-decoration: none !important;
    }
    
    .container {
        max-width: 100% !important;
        padding: 0 !important;
    }
}