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

body {
    font-family: 'Roboto', sans-serif;
    background: #e6f0fa;
    color: #1a3c6d;
    line-height: 1.8;
}

.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 15px;
}

.header {
    background: #023e8a;
    color: #fff;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 15px;
}

.logo {
    font-size: 2.5rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-item {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.nav-item:hover {
    color: #48cae4;
}

.toggle-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
}

.content {
    padding: 60px 0;
}

.hero, .nature, .locations, .mission, .stories, .promo, .discover, .blog-posts, .tips-section, .products-section, .cart-section, .cart-tips, .privacy-section, .terms-section {
    margin-bottom: 80px;
}

h2 {
    color: #023e8a;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

h3 {
    color: #023e8a;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.nature-grid, .stories-grid, .tips-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.nature-card, .story-card, .tips-list li {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.locations-grid, .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.location-card, .product-item {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.location-link {
    color: #023e8a;
    text-decoration: none;
}

.location-link:hover {
    text-decoration: underline;
}

.product-item {
    text-align: center;
}

.add-to-cart {
    background: #00b4d8;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s;
}

.add-to-cart:hover {
    background: #0096c7;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #f8faff;
    margin: 15px 0;
    border-radius: 10px;
}

#lead-form input, #lead-form textarea {
    width: 100%;
    margin: 15px 0;
    padding: 15px;
    border: 1px solid #48cae4;
    border-radius: 10px;
}

#lead-form button {
    background: #023e8a;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s;
}

#lead-form button:hover {
    background: #0077b6;
}

.footer {
    background: #1a3c6d;
    color: #fff;
    text-align: center;
    padding: 50px 0;
}

.footer-content {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-link {
    color: #48cae4;
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

.cta-btn {
    background: #00b4d8;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 10px;
    display: inline-block;
    transition: background 0.3s;
}

.cta-btn:hover {
    background: #0096c7;
}

@media (max-width: 768px) {
    .nav-list {
        display: none;
        flex-direction: column;
        gap: 20px;
    }

    .toggle-btn {
        display: block;
    }

    .nav-menu.active .nav-list {
        display: flex;
    }

    .nature-grid, .stories-grid, .tips-list, .locations-grid, .products-grid {
        grid-template-columns: 1fr;
    }
}