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

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

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

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

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

.logo {
    font-size: 2.5rem;
    margin: 0;
}

.nav-menu {
    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: #b3e5fc;
}

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

.main-content {
    padding: 60px 0;
}

.hero, .features, .stories, .mission, .reviews, .promo, .blog-section, .tips-section, .products-section, .cart-section, .cart-tips-section, .privacy-section, .terms-section {
    margin-bottom: 80px;
}

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

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

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

.feature-box, .review-box, .tips-list li {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

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

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

.story-link {
    color: #0288d1;
    text-decoration: none;
}

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

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

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

.add-to-cart:hover {
    background: #27ae60;
}

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

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

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

#lead-form button:hover {
    background: #01579b;
}

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

.footer-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
}

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

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

.cta-button {
    background: #2ecc71;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 12px;
    display: inline-block;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #27ae60;
}

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

    .nav-toggle {
        display: block;
    }

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

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