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

.header-content, .content-block, .footer-content {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-header {
    background-color: #b3e0e6; /* Мятный */
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid #8cd4de;
}

.logo {
    font-family: 'Merriweather', serif;
    font-size: 30px;
    text-align: center;
    color: #2e5a6b;
    margin-bottom: 10px;
}

.nav-menu {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.nav-link {
    text-decoration: none;
    color: #2e5a6b;
    padding: 8px 12px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #1a3f4c; /* Темно-голубой */
}

.cart-count {
    background-color: #1a3f4c;
    color: #fff;
    padding: 2px 6px;
    border-radius: 50%;
    font-size: 12px;
}

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

.welcome-section {
    background-color: #c2e7ef;
    padding: 35px 0;
    text-align: center;
    margin-bottom: 30px;
}

.welcome-content h1 {
    font-family: 'Merriweather', serif;
    font-size: 28px;
    color: #2e5a6b;
    margin-bottom: 15px;
}

.welcome-content p {
    font-size: 15px;
    margin-bottom: 20px;
}

.welcome-button {
    display: inline-block;
    padding: 10px 18px;
    background-color: #1a3f4c;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.welcome-button:hover {
    background-color: #2e5a6b;
}

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

.content-block h2 {
    font-family: 'Merriweather', serif;
    font-size: 24px;
    color: #2e5a6b;
    margin-bottom: 18px;
}

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

.benefits-list li {
    margin-bottom: 12px;
    padding-left: 15px;
    position: relative;
}

.benefits-list li::before {
    content: "•";
    color: #1a3f4c;
    position: absolute;
    left: 0;
}

.product-item h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.product-item p {
    margin: 0 0 10px 0;
}

.product-item button {
    padding: 8px 15px;
    background-color: #1a3f4c;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.product-item button:hover {
    background-color: #2e5a6b;
}

.section-button {
    display: inline-block;
    padding: 10px 18px;
    background-color: #1a3f4c;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.section-button:hover {
    background-color: #2e5a6b;
}

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

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

.cart-item p {
    margin: 0;
}

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

.quantity-control button {
    padding: 3px 7px;
    background-color: #1a3f4c;
    color: #fff;
    border: none;
    border-radius: 3px;
}

.quantity-control button:hover {
    background-color: #2e5a6b;
}

.btn-remove {
    background-color: #b3e0e6;
    color: #2e5a6b;
    padding: 3px 7px;
    border: none;
    border-radius: 3px;
}

.btn-remove:hover {
    background-color: #8cd4de;
}

.cart-total {
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 16px;
}

.cart-clear {
    padding: 10px 18px;
    background-color: #b3e0e6;
    color: #2e5a6b;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.cart-clear:hover {
    background-color: #8cd4de;
}

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

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

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

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

.form-button {
    padding: 10px 18px;
    background-color: #1a3f4c;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.form-button:hover {
    background-color: #2e5a6b;
}

.form-message {
    margin-top: 10px;
    color: #1a3f4c;
}

.bottom-footer {
    background-color: #2e5a6b;
    color: #e6f3f7;
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
}

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

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

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

.cookie-notice button {
    padding: 8px 12px;
    margin: 5px;
    border: none;
    border-radius: 4px;
    background-color: #1a3f4c;
    color: #fff;
}

.cookie-notice button:hover {
    background-color: #2e5a6b;
}

.disclaimer-note {
    text-align: center;
    padding: 10px;
    background-color: #b3e0e6;
    color: #2e5a6b;
    font-size: 13px;
    margin-top: 15px;
}