:root {
    --vc-primary: #2E7D32; /* Deep Green */
    --vc-accent: #81C784;  /* Light Green */
    --vc-dark: #1B1B1B;
    --vc-light: #F5F5F5;
    --vc-white: #FFFFFF;
    --vc-text: #424242;
    --vc-font-head: 'Montserrat', sans-serif;
    --vc-font-body: 'Open Sans', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: var(--vc-font-body);
    color: var(--vc-text);
    background-color: var(--vc-white);
    line-height: 1.6;
}

h1, h2, h3, h4 { font-family: var(--vc-font-head); color: var(--vc-dark); font-weight: 700; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* Header */
.vc-header {
    background: var(--vc-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.vc-nav-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vc-logo {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--vc-primary);
    gap: 10px;
}
.vc-logo img { width: 32px; height: 32px; }

.vc-menu { display: flex; gap: 30px; }
.vc-menu a { font-weight: 600; font-size: 0.95rem; }
.vc-menu a:hover { color: var(--vc-primary); }

/* Mobile Menu */
.vc-burger { display: none; background: none; border: none; font-size: 24px; cursor: pointer; }
.vc-mobile-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; width: 100%;
    background: var(--vc-white);
    border-top: 1px solid #eee;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.vc-mobile-nav a { display: block; padding: 12px 0; border-bottom: 1px solid #eee; }
.vc-mobile-nav.active { display: block; }

/* Hero Section */
.vc-hero {
    position: relative;
    height: 600px;
    background: url('https://images.pexels.com/photos/1571460/pexels-photo-1571460.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--vc-white);
}
.vc-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.4); }
.vc-hero-content { position: relative; z-index: 10; padding: 20px; max-width: 800px; }
.vc-hero h1 { font-size: 3.5rem; color: var(--vc-white); margin-bottom: 20px; }
.vc-btn {
    display: inline-block;
    background: var(--vc-primary);
    color: var(--vc-white);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.vc-btn:hover { background: #1B5E20; }

/* Sections */
.vc-section { padding: 80px 20px; }
.vc-bg-light { background: var(--vc-light); }
.vc-container { max-width: 1200px; margin: 0 auto; }

.vc-title { text-align: center; margin-bottom: 50px; font-size: 2.2rem; }
.vc-text { max-width: 700px; margin: 0 auto 40px; text-align: center; color: #666; }

/* Grid System */
.vc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.vc-card {
    background: var(--vc-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.vc-card:hover { transform: translateY(-5px); }
.vc-card img { width: 100%; height: 220px; object-fit: cover; }
.vc-card-body { padding: 25px; }
.vc-card h3 { margin-bottom: 10px; color: var(--vc-primary); }

/* Gallery */
.vc-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 15px; }
.vc-gallery img { width: 100%; height: 250px; object-fit: cover; border-radius: 8px; }

/* Form */
.vc-form-box { max-width: 600px; margin: 0 auto; background: var(--vc-white); padding: 40px; border-radius: 10px; box-shadow: 0 5px 20px rgba(0,0,0,0.1); }
.vc-input-group { margin-bottom: 20px; }
.vc-label { display: block; margin-bottom: 8px; font-weight: 600; }
.vc-input { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 5px; font-family: inherit; }
.vc-submit { width: 100%; border: none; cursor: pointer; }

/* Footer */
.vc-footer { background: var(--vc-dark); color: #9E9E9E; padding: 60px 20px 20px; font-size: 0.9rem; }
.vc-footer a { color: var(--vc-white); }
.vc-footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; max-width: 1200px; margin: 0 auto 40px; }

/* Cookie */
.vc-cookie {
    position: fixed; bottom: 0; left: 0; width: 100%;
    background: var(--vc-white); padding: 20px; border-top: 3px solid var(--vc-primary);
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1); display: none; z-index: 2000;
    text-align: center;
}

@media (max-width: 768px) {
    .vc-menu { display: none; }
    .vc-burger { display: block; }
    .vc-hero h1 { font-size: 2.2rem; }
}