        /* Дополнительные стили для страницы доставки */
        .page-header {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/images/baner-5.jpg');
        }
        
        .delivery-content {
            padding: 50px 0;
        }
        
        .delivery-section {
            margin-bottom: 60px;
        }
        
        .delivery-section h2 {
            text-align: left;
            margin-bottom: 30px;
        }
        
        .delivery-section h2:after {
            left: 0;
            transform: none;
        }
        
        .delivery-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start;
        }
        
        .delivery-text p {
            margin-bottom: 20px;
            color: #555;
            line-height: 1.8;
            font-size: 1.1em;
        }
        
        .delivery-image img {
            width: 100%;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            min-height: 300px;
            object-fit: cover;
            background-color: #f5f5f5;
        }
        
        .delivery-image img:hover {
            transform: scale(1.02);
        }
        
        /* Стили для карточек */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin: 40px 0;
        }
        
        .card-item {
            background: #fff;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .card-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(183, 151, 92, 0.1);
        }
        
        .card-icon {
            font-size: 3em;
            color: #b7975c;
            margin-bottom: 20px;
        }
        
        .card-item h3 {
            margin-bottom: 15px;
            color: #2c3e50;
            font-size: 1.3em;
        }
        
        .card-item p {
            color: #7f8c8d;
            font-size: 1em;
            line-height: 1.6;
        }
        
        /* Стили для этапов доставки */
        .steps-container {
            margin: 40px 0;
        }
        
        .step-item {
            display: flex;
            gap: 30px;
            margin-bottom: 30px;
            padding: 25px;
            background: #f8f9fa;
            border-radius: 15px;
            transition: all 0.3s ease;
            border-left: 4px solid #b7975c;
        }
        
        .step-item:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            background: #b7975c;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8em;
            font-weight: bold;
            flex-shrink: 0;
        }
        
        .step-content {
            flex-grow: 1;
        }
        
        .step-content h3 {
            margin-bottom: 10px;
            color: #2c3e50;
            font-size: 1.3em;
        }
        
        .step-content p {
            color: #666;
            line-height: 1.6;
        }
        
        /* Стили для способов оплаты */
        .payment-methods {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            margin: 40px 0;
        }
        
        .payment-method {
            background: #fff;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .payment-method:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(183, 151, 92, 0.1);
        }
        
        .payment-icon {
            font-size: 2.5em;
            color: #b7975c;
            min-width: 60px;
            text-align: center;
        }
        
        .payment-info {
            flex-grow: 1;
        }
        
        .payment-info h3 {
            margin-bottom: 5px;
            color: #2c3e50;
        }
        
        .payment-info p {
            color: #7f8c8d;
            font-size: 0.95em;
        }
        
        /* Стили для информации о гарантии */
        .guarantee-box {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: #fff;
            padding: 40px;
            border-radius: 20px;
            text-align: center;
            margin: 40px 0;
        }
        
        .guarantee-box i {
            font-size: 4em;
            margin-bottom: 20px;
        }
        
        .guarantee-box h3 {
            color: #fff;
            font-size: 2em;
            margin-bottom: 20px;
        }
        
        .guarantee-box p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.2em;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
        }
        
        /* Стили для прайса */
        .price-table {
            background: #fff;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            margin: 40px 0;
        }
        
        .price-row {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            padding: 15px 25px;
            border-bottom: 1px solid #eee;
            transition: background 0.3s ease;
        }
        
        .price-row:hover {
            background: #f8f9fa;
        }
        
        .price-row.header {
            background: #b7975c;
            color: #fff;
            font-weight: bold;
            border-bottom: none;
        }
        
        .price-row.header:hover {
            background: #a17e4a;
        }
        
        .price-cell {
            padding: 5px 0;
        }
        
        /* Стили для зон доставки */
        .zones-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin: 40px 0;
        }
        
        .zone-item {
            background: #fff;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            text-align: center;
            border: 1px solid #eee;
        }
        
        .zone-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(183, 151, 92, 0.1);
            border-color: #b7975c;
        }
        
        .zone-icon {
            font-size: 2.5em;
            color: #b7975c;
            margin-bottom: 15px;
        }
        
        .zone-item h3 {
            margin-bottom: 10px;
            color: #2c3e50;
        }
        
        .zone-item .price {
            font-size: 1.3em;
            color: #b7975c;
            font-weight: bold;
            margin: 15px 0;
        }
        
        .zone-item .note {
            color: #7f8c8d;
            font-size: 0.9em;
        }
        
        /* Важная информация */
        .important-info {
            background: #fff3e0;
            border-left: 5px solid #b7975c;
            padding: 30px;
            border-radius: 10px;
            margin: 40px 0;
        }
        
        .important-info h3 {
            color: #2c3e50;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .important-info h3 i {
            color: #b7975c;
        }
        
        .important-info ul {
            list-style: none;
            padding: 0;
        }
        
        .important-info li {
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
            color: #555;
        }
        
        .important-info li:before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: #b7975c;
        }
        
        /* Кнопка заказа */
        .order-section {
            text-align: center;
            padding: 60px 0;
            background: #f8f9fa;
            border-radius: 20px;
            margin: 60px 0;
        }
        
        .order-section h2 {
            margin-bottom: 20px;
        }
        
        .order-section p {
            font-size: 1.2em;
            color: #666;
            margin-bottom: 30px;
        }
        
        .btn-large {
            padding: 15px 50px;
            font-size: 1.2em;
        }
        
        /* Адаптивность */
        @media (max-width: 992px) {
            .delivery-grid,
            .payment-methods,
            .cards-grid,
            .zones-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .page-header {
                height: 200px;
            }
            
            .page-header h1 {
                font-size: 2em;
            }
            
            .delivery-grid,
            .payment-methods,
            .cards-grid,
            .zones-grid {
                grid-template-columns: 1fr;
            }
            
            .delivery-section h2 {
                text-align: center;
            }
            
            .delivery-section h2:after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .step-item {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
            
            .step-number {
                margin: 0 auto;
            }
            
            .price-row {
                grid-template-columns: 1fr;
                gap: 10px;
                text-align: center;
            }
            
            .price-row.header {
                display: none;
            }
            
            .price-cell:before {
                content: attr(data-label);
                font-weight: bold;
                color: #b7975c;
                display: block;
                margin-bottom: 5px;
            }
        }
        
        /* Стиль для отсутствующих изображений */
        img[src*="none.jpg"] {
            opacity: 0.7;
            object-fit: contain !important;
            background: #f5f5f5;
        }