* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
header {
    background-color: #f8f8f8;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.logo {
    font-size: 24px;
    font-weight: bold;
    color: #0066cc;
}
.contacts {
    text-align: right;
}
.phone {
    font-size: 20px;
    font-weight: bold;
    color: #0066cc;
}
nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}
nav ul li {
    margin-right: 20px;
}
nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}
.breadcrumbs {
    padding: 15px 0;
    font-size: 14px;
}
.breadcrumbs a {
    color: #0066cc;
    text-decoration: none;
}
h1 {
    color: #0066cc;
    margin-bottom: 30px;
}
.delivery-section {
    margin-bottom: 40px;
}
.delivery-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 20px;
}
.delivery-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    background-color: #f9f9f9;
}
.delivery-card h3 {
    color: #0066cc;
    margin-top: 0;
}
.payment-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}
.payment-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    background-color: #f9f9f9;
    min-height: 220px;
}
.payment-icon {
    font-size: 40px;
    margin-bottom: 15px;
}
.payment-card img {
    max-width: 80px;
    height: auto;
    margin-bottom: 15px;
}
.payment-card h3 {
    color: #0066cc;
    margin-top: 0;
}
.important-note {
    background-color: #fff8e1;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin: 20px 0;
}
footer {
    background-color: #2c3e50; /* Темно-синий фон */
    color: #fff;
    padding: 40px 0;
    margin-top: 50px;
}
.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.footer-column h3 {
    color: #3498db; /* Синий цвет заголовков */
    margin-bottom: 20px;
    font-size: 18px;
}
.footer-column ul {
    list-style: none;
}
.footer-column ul li {
    margin-bottom: 12px;
}
.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-column ul li a:hover {
    color: #3498db;
}
.copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
    font-size: 14px;
}
@media (max-width: 768px) {
    .delivery-methods, .payment-methods {
        grid-template-columns: 1fr;
    }
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}
/* Добавим после существующих стилей */

/* Стили для преимуществ */
.advantages-section {
    margin: 40px 0;
    padding: 30px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.advantage-card {
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    background-color: #f9f9f9;
    transition: transform 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.advantage-icon {
    font-size: 32px;
    color: #0066cc;
    margin-bottom: 15px;
}

.advantage-card h3 {
    color: #0066cc;
    margin-top: 0;
}

/* Стили для кнопки */
.contact-button-container {
    text-align: center;
    margin: 40px 0;
}

.contact-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #0066cc;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 18px;
    transition: background-color 0.3s;
}

.contact-button:hover {
    background-color: #0055aa;
}

/* Улучшим карточки доставки и оплаты */
.delivery-card, .payment-card {
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.delivery-card:hover, .payment-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.payment-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

/* Адаптивность */
@media (max-width: 992px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .delivery-methods {
        grid-template-columns: 1fr;
    }
    
    .payment-methods {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .payment-methods {
        grid-template-columns: 1fr;
    }
}