
:root {
    --primary-color: #689550;
    --primary-dark: #4f7340;
    --primary-light: #84b36d;
    --primary-rgb: 104, 149, 80;
    
    --bg-primary: #f7faf5;
    --bg-secondary: #ffffff;
    --bg-tertiary: #edf4e8;
    --bg-dark: #364f2a;
    
    --accent-color: #e97c1f;
    --accent-rgb: 233, 124, 31;

    --text-primary: #333;
    --text-secondary: #666;
    --text-light: #888;
    --text-white: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);

    --accent-color: #f59e0b;
    --error-color: #ff6b6b;
    --success-color: #10b981;

    
    --gradient-accent: linear-gradient(135deg, var(--accent-color), #fbbf24);
    
    --border-light: #f0f7f3;
    --border-medium: #e2e8f0;
    
    --overlay-primary: rgba(var(--primary-rgb), 0.95);
    --overlay-light: rgba(var(--primary-rgb), 0.05);
    
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    --gradient-dark: linear-gradient(135deg, var(--bg-dark), #2d2d2d);

    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 10px 30px rgba(var(--primary-rgb), 0.1);
    --shadow-heavy: 0 15px 35px rgba(var(--primary-rgb), 0.3);

    --border-radius: 8px;
    --transition: all 0.3s ease;

    --hits-primary-color: #689550;
    --hits-primary-light: #84b36d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Manrope', sans-serif;
}


body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}


.btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    gap: 8px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

.btn-secondary:hover {
    background: var(--text-white);
    color: var(--primary-color);
    transform: translateY(-2px);
}


html {
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}


html::-webkit-scrollbar {
    display: none; 
}
.anchor-target {
    scroll-margin-top: 100px; 
}

body {
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

body::-webkit-scrollbar {
    display: none;
}

body.no-scroll {
    overflow: hidden;
}
html, body {
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
}

* {
    box-sizing: border-box;
}

.section-title {
    font-family: 'FuturaDemiC', Arial, sans-serif;
    font-size: 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

