 html {
            scroll-padding-top: 80px; 
        }
        body {
            font-family: 'Inter', sans-serif;
            background-color: #f8f9fa;
        }
        .text-accent {
            color: #12472d;
        }
        .bg-accent {
            background-color: #12472d;
        }

        .fade-in-section {
            opacity: 0;
            transform: translateY(20px); 
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }
        .fade-in-section.is-visible {
            opacity: 1;
            transform: translateY(0);
        }