:root {
    --primary-color: #2e7d32;
    --primary-dark: #1b5e20;
    --accent-color: #8bc34a;
    --earth-brown: #4e342e;
    --bg-light: #f1f8e9;
    --pro-gold: #ffd700;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--bg-light);
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.bg-success {
    background-color: var(--primary-color) !important;
}

.hero-section {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://images.unsplash.com/photo-1501555088652-021faa106b9b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    margin-bottom: 50px;
}

.card {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

.btn-success {
    background-color: var(--primary-color);
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
}

.btn-success:hover {
    background-color: var(--primary-dark);
}

.badge-pro {
    background-color: var(--pro-gold);
    color: #000;
    font-weight: bold;
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: 5px;
    text-transform: uppercase;
}

.pricing-card {
    border: 2px solid transparent;
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: -1px;
}

.bg-forest { background-color: var(--primary-color); }
.text-forest { color: var(--primary-color); }

/* Featured section */
.featured-badge {
    background: rgba(255, 215, 0, 0.9);
    color: black;
    padding: 5px 15px;
    border-radius: 20px 0 0 20px;
}
