.delivery-container {
            max-width: 1113px;
            margin: 0 auto;
            padding: 20px;
            background: var(--bg);
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .delivery-header {
            text-align: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 2px solid #007bff;
        }
        
        .delivery-header h1 {
                    color: var(--primary);
                    margin: 0 0 10px 0;
                    font-size: 28px;
                }
        
        .delivery-header p {
                    color: var(--muted);
                    font-size: 16px;
                    margin: 0;
                }
        
        .delivery-section {
                    margin-bottom: 30px;
                    padding: 20px;
                    background: var(--accent);
                    border-radius: 8px;
                    border-left: 4px solid var(--primary);
                }
        
        .delivery-section h2 {
            color: #2c3e50;
            margin: 0 0 15px 0;
            font-size: 22px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .delivery-method {
            background: #fff;
            padding: 15px;
            border-radius: 6px;
            margin-bottom: 15px;
            border: 1px solid #e9ecef;
        }
        
        .delivery-method:last-child {
            margin-bottom: 0;
        }
        
        .delivery-method h3 {
                    color: var(--primary);
                    margin: 0 0 10px 0;
                    font-size: 18px;
                }
        
        .delivery-details {
            color: #333;
            line-height: 1.6;
        }
        
        .delivery-details ul {
            margin: 10px 0;
            padding-left: 20px;
        }
        
        .delivery-details li {
            margin-bottom: 5px;
        }
        
        .payment-method {
            background: #fff;
            padding: 15px;
            border-radius: 6px;
            margin-bottom: 15px;
            border: 1px solid #e9ecef;
        }
        
        .payment-method h3 {
                    color: var(--primary);
                    margin: 0 0 10px 0;
                    font-size: 18px;
                }
        
        .contact-info {
                    background: linear-gradient(135deg, var(--primary), var(--accent));
                    color: #b11818;
                    padding: 20px;
                    border-radius: 8px;
                    text-align: center;
                }
        
        .contact-info h2 {
            margin: 0 0 15px 0;
            color: #af0d1a;
            font-size: 23px;
        }
        
        .contact-links {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }
        
        .contact-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 16px;
            background: rgba(255,255,255,0.2);
            border-radius: 25px;
            color: #000000;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .contact-link:hover {
            background: rgba(255,255,255,0.3);
            transform: translateY(-2px);
        }
        
        .back-button {
                    display: inline-flex;
                    align-items: center;
                    gap: 8px;
                    padding: 12px 24px;
                    background: var(--accent-border);
                    color: white;
                    text-decoration: none;
                    border-radius: 25px;
                    margin-top: 20px;
                    transition: all 0.3s ease;
                }
        
        .back-button:hover {
                    background: var(--accent-border);
                    transform: translateY(-2px);
                }
        
        @media (max-width: 768px) {
            .delivery-container {
                margin: 10px;
                padding: 15px;
            }
            
            .contact-links {
                flex-direction: column;
                align-items: center;
            }
            
            .contact-link {
                width: 200px;
                justify-content: center;
            }
        }