


html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333333;
    line-height: 1.6;
}


::selection {
    background-color: rgba(45, 106, 79, 0.2);
}


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


a {
    transition: color 0.3s ease;
}


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


header {
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

header.scrolled {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}


input, textarea, select {
    width: 100%;
    font-family: 'Poppins', sans-serif;
}

input:focus, textarea:focus, select:focus {
    outline: none;
}


.iti {
    width: 100%;
}


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

@keyframes slideInUp {
    from {
        transform: translate3d(0, 20px, 0);
        opacity: 0;
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}


.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}


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

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


.faq-item .faq-icon i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon i.fa-plus {
    transform: rotate(45deg);
}


.text-gradient {
    background: linear-gradient(90deg, #2D6A4F 0%, #74C69D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient {
    background: linear-gradient(90deg, #2D6A4F 0%, #74C69D 100%);
}


.cookie-toggle.active .w-12 {
    background-color: #40916C;
}

.cookie-toggle.active .cookie-toggle-dot {
    transform: translateX(24px);
}


@media (max-width: 768px) {
    h1 {
        font-size: 2.25rem;
    }
    h2 {
        font-size: 1.75rem;
    }
}


@media print {
    header, footer, button, .no-print {
        display: none;
    }
    
    body {
        padding: 0;
        margin: 0;
    }
    
    main {
        width: 100%;
        padding: 0;
        margin: 0;
    }
}


:focus-visible {
    outline: 2px solid #2D6A4F;
    outline-offset: 2px;
}


#balance-gauge-progress {
    transition: stroke-dashoffset 1.5s ease;
}


#success-modal .transform {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

#success-modal.showing .transform {
    transform: scale(1.05);
    opacity: 0;
}

#success-modal.visible .transform {
    transform: scale(1);
    opacity: 1;
}