body {
    font-family: 'Verdana', sans-serif;
    margin: 0;
    padding: 0;
    background: #e6f0fa;
    color: #2d2d2d;
    line-height: 1.8;
}

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

.header {
    background: #0066cc;
    color: #fff;
    padding: 25px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

.nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
}

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

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

.intro-section, .advantages-section, .highlight-posts, .mission-section, .reviews-section, .offer-section, .blog-section, .tips-section, .products-section, .cart-section, .cart-tips {
    margin-bottom: 60px;
}

h1, h2, h3 {
    color: #0066cc;
}

.advantages-list, .reviews-list, .tips-list {
    list-style: none;
    padding: 0;
}

.advantages-list li, .reviews-list li, .tips-list li {
    padding: 12px 0;
}

.posts-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.post-item {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

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

.product {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.add-to-cart {
    background: #00cc66;
    color: #fff;
    border: none;
    padding: 15px 25px;
    cursor: pointer;
    border-radius: 8px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background: #f1f3f5;
    margin: 15px 0;
    border-radius: 8px;
}

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

#lead-form button {
    background: #0066cc;
    color: #fff;
    border: none;
    padding: 15px 25px;
    cursor: pointer;
    border-radius: 8px;
}

.footer {
    background: #2d2d2d;
    color: #fff;
    text-align: center;
    padding: 30px 0;
}

.btn {
    background: #00cc66;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    display: inline-block;
}

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

    .nav-toggle {
        display: block;
    }

    .nav.active ul {
        display: flex;
    }
}