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

body {
    background-color: #f7f7f5;
    color: #2c3e50;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Navigation */
nav {
    background-color: #f7f7f5; 
    border-bottom: 1px solid #e0e0dc;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

#brand-logo {
    height: 50px;
    width: auto;
}

.logo-text h1 {
    font-size: 16px;
    color: #1a472a;
    text-transform: uppercase;
}

.logo-text span {
    font-size: 10px;
    color: #7f8c8d;
    display: block;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    font-size: 14px;
}

.nav-btn {
    background: #1a472a;
    color: white !important;
    padding: 8px 18px;
    border-radius: 4px;
}

/* Hero */
.hero {
    background-color: #1a472a;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
}

.badge {
    background: rgba(255,255,255,0.1);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 10px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
}

.hero h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 17px;
    color: #d1d9d4;
    margin-bottom: 30px;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn {
    background-color: white;
    color: #1a472a !important;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    display: inline-block;
}

.btn:visited { color: #1a472a !important; }

.btn-outline {
    border: 1px solid white;
    color: white !important;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    display: inline-block;
}

.btn-outline:visited { color: white !important; }

/* Features */
.features {
    padding: 60px 0;
}

.feature-grid {
    display: flex;
    gap: 20px;
}

.feature-card {
    background: white;
    padding: 30px;
    border: 1px solid #e0e0dc;
    border-radius: 8px;
    text-align: center;
    flex: 1;
}

.feature-card h4 { margin-bottom: 15px; color: #1a472a; }
.feature-card p { font-size: 14px; color: #666; }

/* Catalog Grid */
.catalog {
    padding: 80px 0;
    text-align: center;
}

.product-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.product-card {
    background: white;
    padding: 30px;
    border: 1px solid #e0e0dc;
    border-radius: 8px;
    width: 350px;
    text-align: left;
}

.tag {
    background: #f1f4f2;
    color: #1a472a;
    padding: 4px 8px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 3px;
}

.price {
    font-size: 12px;
    color: #7f8c8d;
    font-weight: 600;
    margin-top: 15px;
    display: block;
}

/* Footer */
footer {
    background-color: #112d1b;
    color: white;
    padding: 60px 0;
}

.footer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.legal-disclaimer {
    max-width: 800px;
    margin: 30px 0;
    font-size: 11px;
    color: #8b9d92;
    background: rgba(0,0,0,0.2);
    padding: 20px;
    border-radius: 6px;
    text-align: justify;
}

.btn-white {
    background: white;
    color: #1a472a !important;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    margin: 20px 0;
    display: inline-block;
}

.btn-white:visited { color: #1a472a !important; }

.business-details {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    width: 100%;
}

.copyright {
    font-size: 12px;
    margin-top: 10px;
    color: #6a7d71;
}

/* ==========================================
   MOBILE RESPONSIVE FIXES (The New Stuff)
   ========================================== */

@media (max-width: 768px) {
    /* Stack Nav vertically */
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        gap: 15px;
    }

    /* Shrink Hero Text */
    .hero h2 {
        font-size: 32px;
    }

    .hero p {
        font-size: 15px;
    }

    /* Stack Hero Buttons */
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .btn, .btn-outline {
        width: 100%;
        max-width: 280px;
    }

    /* Stack Features */
    .feature-grid {
        flex-direction: column;
    }

    /* Products - Make them full width */
    .product-card {
        width: 100%;
    }

    /* Legal Disclaimer - Justify text can look weird on narrow screens */
    .legal-disclaimer {
        text-align: left;
    }
}