
    :root {
        --primary: #1e4d2b;
        --secondary: #27ae60;
        --accent: #f39c12;
        --text: #1a1a1a;
        --bg: #ffffff;
        --light-bg: #e8f5e9;
        --font-main: 'Lato', sans-serif;
    }
    
    * { box-sizing: border-box; }
    body {
        font-family: var(--font-main);
        color: var(--text);
        background-color: var(--bg);
        margin: 0;
        line-height: 1.6;
    }
    
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    a { color: var(--primary); text-decoration: none; transition: 0.3s; }
    a:hover { color: var(--accent); }
    
    /* Header Styles */
    header {
        background: #fff;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        padding: 15px 0;
        position: relative;
        z-index: 100;
    }
    
    /* Navigation */
    nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        gap: 20px;
    }
    nav a {
        color: var(--text);
        font-weight: 600;
    }
    nav a:hover { color: var(--primary); }
    
    /* Mobile Nav */
    @media (max-width: 768px) {
        nav ul { flex-direction: column; gap: 10px; display: none; }
        nav.active ul { display: flex; }
    }

    /* Widget Styles */
    .widget {
        transition: transform 0.3s ease;
    }
    .widget:hover {
        transform: translateY(-3px);
    }
    .weather-widget, .calendar-widget, .stats-widget, .newsletter-widget, .trending-widget {
        font-family: var(--font-main);
    }
    .trending-widget a {
        color: var(--text);
        text-decoration: none;
        font-weight: 500;
    }
    .trending-widget a:hover {
        color: var(--accent);
    }

    /* Hero Section */
    .hero {
        padding: 60px 0;
        background-color: var(--light-bg);
        margin-bottom: 40px;
        border-radius: 0 0 20px 20px;
    }
    .hero-content {
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
    }
    .hero h1 {
        font-size: 3rem;
        margin-bottom: 20px;
        color: var(--primary);
    }
    .hero p {
        font-size: 1.2rem;
        margin-bottom: 30px;
        color: #666;
    }
    
    /* Features Section */
    .features {
        padding: 40px 0;
        background: #fff;
        margin-bottom: 40px;
    }
    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }
    .feature-item {
        text-align: center;
        padding: 20px;
        border: 1px solid #eee;
        border-radius: 10px;
        transition: transform 0.3s;
    }
    .feature-item:hover { transform: translateY(-5px); }
    .feature-icon {
        font-size: 2.5rem;
        color: var(--accent);
        margin-bottom: 15px;
        display: block;
    }
    
    /* Card Styles */
    .card {
        background: #fff;
        border: 1px solid #eee;
        border-radius: 12px;
        padding: 20px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 6px rgba(0,0,0,0.02);
        display: flex;
        flex-direction: column;
    }
    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.08);
        border-color: var(--accent);
    }
    .retailer-card-image {
        height: 120px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 15px;
        background: #f9f9f9;
        border-radius: 8px;
        padding: 10px;
    }
    .retailer-card-image img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }
    
    /* Buttons */
    .btn {
        display: inline-block;
        padding: 12px 24px;
        background: var(--accent);
        color: #fff;
        border-radius: 6px;
        font-weight: 600;
        text-align: center;
        border: none;
        cursor: pointer;
    }
    .btn:hover {
        background: var(--primary);
        color: #fff;
        text-decoration: none;
    }
    
    /* Footer */
    footer {
        background: var(--primary);
        color: #fff;
        padding: 40px 0;
        margin-top: 60px;
    }
    footer a { color: rgba(255,255,255,0.8); }
    footer a:hover { color: #fff; }
    .disclosure {
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid rgba(255,255,255,0.1);
        font-size: 0.9rem;
        opacity: 0.8;
        text-align: center;
    }

    
    .logo {
        display: inline-block;
        width: 40px;
        height: 40px;
        background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAiIGhlaWdodD0iNTAiIHZpZXdCb3g9IjAgMCA1MCA1MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgICAgICAgICAgPGNpcmNsZSBjeD0iMjUiIGN5PSIyNSIgcj0iMjUiIGZpbGw9IiMxZTRkMmIiIC8+CiAgICAgICAgICAgIDxyZWN0IHg9IjE1IiB5PSIxNSIgd2lkdGg9IjIwIiBoZWlnaHQ9IjIwIiB0cmFuc2Zvcm09InJvdGF0ZSg0NSAyNSAyNSkiIGZpbGw9IiMyN2FlNjAiIC8+CiAgICAgICAgICAgIDxjaXJjbGUgY3g9IjI1IiBjeT0iMjUiIHI9IjUiIGZpbGw9IiNmMzljMTIiIC8+CiAgICAgICAgPC9zdmc+');
        background-size: contain;
        background-repeat: no-repeat;
        margin-right: 10px;
        vertical-align: middle;
    }
    .site-branding {
        display: flex;
        align-items: center;
        text-decoration: none;
    }
    .site-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: #1e4d2b;
        margin: 0;
    }
    
    
        .retailer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }
        
    