body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #e6f3f5; /* Светло-голубой */
    color: #2e4a62; /* Тёмно-синий */
    line-height: 1.6;
}

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

h1, h2, h3 {
    font-family: 'Noto Serif', serif;
    color: #1e3a5f; /* Глубокий синий */
}

.main-header {
    background-color: #a3c9d1; /* Светло-бирюзовый */
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid #8ab4bf;
}

.site-logo {
    font-size: 36px;
    margin: 0;
    text-align: center;
    color: #1e3a5f;
}

.main-nav {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.main-nav a {
    text-decoration: none;
    color: #1e3a5f;
    padding: 10px 20px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #2e7d8e; /* Средний бирюзовый */
}

.cart-count {
    background-color: #2e7d8e;
    color: #fff;
    padding: 3px 8px;
    border-radius: 50%;
    font-size: 14px;
}

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

.hero-section, .benefits-section, .tips-section, .mission-section, .stories-section, .promo-section, .contact-preview, .product-list, .cart-section, .contact-section, .policy-section, .terms-section {
    background-color: #fff;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 26px;
    margin-bottom: 20px;
}

ul {
    list-style-type: none;
    padding-left: 0;
}

ul li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

ul li::before {
    content: "•";
    color: #2e7d8e;
    position: absolute;
    left: 0;
}

.action-link, .submit-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #2e7d8e;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.action-link:hover, .submit-btn:hover {
    background-color: #1e3a5f;
}

.cart-section {
    background-color: #a3c9d1;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cart-items {
    margin-bottom: 20px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #8ab4bf;
}

.cart-item p {
    margin: 0;
}

.quantity-control {
    display: flex;
    gap: 8px;
}

.quantity-control button {
    padding: 4px 10px;
    background-color: #2e7d8e;
    color: #fff;
    border: none;
    border-radius: 5px;
}

.quantity-control button:hover {
    background-color: #1e3a5f;
}

.btn-remove {
    background-color: #8ab4bf;
    color: #fff;
    padding: 4px 10px;
    border: none;
    border-radius: 5px;
}

.btn-remove:hover {
    background-color: #6f9da7;
}

.cart-total {
    font-weight: bold;
    margin-bottom: 20px;
}

.clear-btn {
    background-color: #8ab4bf;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
}

.clear-btn:hover {
    background-color: #6f9da7;
}

.order-form {
    margin-top: 25px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #8ab4bf;
    border-radius: 5px;
}

.form-message {
    margin-top: 15px;
    color: #2e7d8e;
}

.main-footer {
    background-color: #1e3a5f;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 25px;
}

.footer-links a {
    color: #a3c9d1;
    text-decoration: none;
    margin: 0 15px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.cookie-notice {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.cookie-notice button {
    padding: 8px 15px;
    margin: 5px;
    border: none;
    border-radius: 5px;
    background-color: #2e7d8e;
    color: #fff;
}

.cookie-notice button:hover {
    background-color: #1e3a5f;
}

.disclaimer-note {
    text-align: center;
    padding: 15px;
    background-color: #a3c9d1;
    color: #1e3a5f;
    font-size: 14px;
}