body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f4f8; /* Açıq mavi */
    color: #1e3a5f; /* Tünd mavi */
    line-height: 1.6;
}

.container {
    max-width: 950px;
    margin: 0 auto;
    padding: 0 25px;
}

h1, h2, h3 {
    font-family: 'Merriweather', serif;
    color: #16325b; /* Dərin mavi */
}

.main-header {
    background-color: #d8e2ef; /* Açıq mavi */
    padding: 25px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid #b0c4de;
}

.site-logo {
    font-size: 32px;
    margin: 0;
    text-align: center;
    color: #16325b;
}

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

.main-nav a {
    text-decoration: none;
    color: #16325b;
    padding: 12px 25px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #2a5298; /* Orta mavi */
}

.cart-count {
    background-color: #2a5298;
    color: #fff;
    padding: 4px 10px;
    border-radius: 50%;
    font-size: 15px;
}

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

.intro-section, .benefits-section, .tips-section, .mission-section, .stories-section, .promo-section, .contact-preview {
    background-color: #fff;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 28px;
    margin-bottom: 25px;
}

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

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

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

.action-link, .action-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #2a5298;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

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

.cart-section {
    background-color: #d8e2ef;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

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

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

.cart-item p {
    margin: 0;
}

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

.quantity-control button {
    padding: 5px 12px;
    background-color: #2a5298;
    color: #fff;
    border: none;
    border-radius: 6px;
}

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

.btn-remove {
    background-color: #b0c4de;
    color: #fff;
    padding: 5px 12px;
    border: none;
    border-radius: 6px;
}

.btn-remove:hover {
    background-color: #9ab8d4;
}

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

.clear-btn {
    background-color: #b0c4de;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
}

.clear-btn:hover {
    background-color: #9ab8d4;
}

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

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

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

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #b0c4de;
    border-radius: 6px;
}

.form-message {
    margin-top: 20px;
    color: #2a5298;
}

.main-footer {
    background-color: #16325b;
    color: #fff;
    text-align: center;
    padding: 25px 0;
    margin-top: 30px;
}

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

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

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

.cookie-notice button {
    padding: 10px 20px;
    margin: 8px;
    border: none;
    border-radius: 6px;
    background-color: #2a5298;
    color: #fff;
}

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

.disclaimer-note {
    text-align: center;
    padding: 20px;
    background-color: #d8e2ef;
    color: #16325b;
    font-size: 15px;
}