:root {
    --primary: #00b324;
    --primary-hover: #7afb70;
    --text-dark: #222;
    --text-light: #555;
    --bg-gray: #f9f9f9;
    --font-main: 'FuturaPT', 'Montserrat', sans-serif;
    --container-width: 1160px;
    --transition: all 0.3s ease;
}

@font-face {
    font-family: 'FuturaPT';
    src: url('../templates/resso/fonts/FuturaPTDemi.ttf') format('truetype');
    font-weight: normal; font-style: normal;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-main); color: var(--text-dark); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: var(--container-width); margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.btn { 
    display: inline-block; 
    padding: 15px 35px; 
    background: var(--primary); 
    color: white; 
    border-radius: 4px; 
    font-weight: bold; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 179, 36, 0.2);
    border: none;
}
.btn:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0, 179, 36, 0.3); }

/* Typography */
h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; font-weight: 900; }
h2 { font-size: 2.5rem; margin-bottom: 30px; }
h3 { font-size: 1.5rem; margin-bottom: 15px; }

header { padding: 20px 0; background: white; box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: sticky; top:0; z-index: 100; }
.header-wrap { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: bold; color: var(--primary); }
.nav-links { display: flex; gap: 30px; }
.nav-links a:hover { color: var(--primary); }

/* Footer */
footer { background: #055a16; color: rgba(255,255,255,0.8); padding: 80px 0 40px; }
footer a { color: white; border-bottom: 1px solid transparent; }
footer a:hover { border-bottom-color: #ddff2e; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.footer-title { color: #ddff2e; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 25px; font-weight: bold; }
.footer-links li { margin-bottom: 10px; font-size: 0.95rem; }

/* Floating Button */

@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.8rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; } /* Mobile menu needed */
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu */
.menu-toggle { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.menu-toggle span { width: 25px; height: 3px; background: var(--text-dark); transition: var(--transition); }

@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    .nav-links {
        position: fixed; top: 80px; left: 0; right: 0; background: white;
        flex-direction: column; padding: 40px 20px; text-align: center;
        transform: translateY(-150%); transition: var(--transition);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    .nav-links.active { transform: translateY(0); }
}
