
.text-primary { color: #037F06; }
.bg-primary { background-color: #037F06; }
.text-secondary { color: #244A64; }
.bg-secondary { background-color: #244A64; }
.text-accent-gold { color: #CFB01A; }
.bg-accent-gold { background-color: #CFB01A; }
.text-accent-red { color: #EC2E15; }
.bg-accent-red { background-color: #EC2E15; }
.text-gray { color: #5B5B5B; }

body {
    font-family: 'Montserrat', sans-serif;
}
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #037F06;
    color: white;
    padding: 8px;
    z-index: 100;
    transition: top 0.3s;
}
.skip-link:focus {
    top: 0;
}