.delivery-page {
    background: #f8f9fa;
    min-height: calc(100vh - 200px);
}

.delivery-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 40px;
}

.delivery-hero-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.delivery-hero-content p {
    font-size: 18px;
    opacity: 0.9;
}

.delivery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.delivery-intro {
    background: #e8f4f8;
    padding: 20px 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: center;
}

.delivery-intro p {
    font-size: 16px;
    color: #1a1a2e;
    margin: 0;
}

.delivery-section {
    margin-bottom: 50px;
}

.delivery-section h2 {
    font-size: 32px;
    color: #1a1a2e;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.delivery-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #1a1a2e;
}

.delivery-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.method-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.method-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.method-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.method-card h3 {
    font-size: 20px;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.method-card > p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

.method-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.method-details li {
    font-size: 13px;
    color: #555;
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.method-details li:before {
    content: '•';
    position: absolute;
    left: 5px;
    color: #1a1a2e;
    font-weight: bold;
}

.delivery-zones {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.zone-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.zone-card h3 {
    font-size: 18px;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.zone-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.zone-time {
    font-weight: 500;
    color: #1a1a2e;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
}

.delivery-faq {
    background: white;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid #f0f0f0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    transition: background 0.2s;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question span {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.faq-toggle {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: none;
    background: #1a1a2e;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.2s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px 25px;
    max-height: 200px;
}

.faq-answer p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.delivery-info {
    background: #fff3cd;
    border: 1px solid #ffeeba;
    border-radius: 8px;
    padding: 25px 30px;
    margin-bottom: 30px;
}

.delivery-info h3 {
    font-size: 18px;
    color: #856404;
    margin-bottom: 15px;
}

.delivery-info ul {
    margin: 0;
    padding-left: 20px;
}

.delivery-info li {
    font-size: 14px;
    color: #856404;
    margin-bottom: 8px;
    line-height: 1.5;
}

.delivery-info li:last-child {
    margin-bottom: 0;
}

.delivery-contacts {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.delivery-contacts p {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
}

.contact-link {
    display: inline-block;
    padding: 10px 25px;
    background: #1a1a2e;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s;
}

.contact-link:hover {
    background: #2a2a4e;
}

@media (max-width: 768px) {
    .delivery-hero {
        padding: 40px 20px;
    }

    .delivery-hero-content h1 {
        font-size: 32px;
    }

    .delivery-hero-content p {
        font-size: 16px;
    }

    .delivery-intro p {
        font-size: 14px;
    }

    .delivery-section h2 {
        font-size: 24px;
    }

    .delivery-methods {
        grid-template-columns: 1fr;
    }

    .delivery-zones {
        grid-template-columns: 1fr;
    }

    .faq-question {
        padding: 15px 20px;
    }

    .faq-question span {
        font-size: 14px;
    }

    .delivery-info {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .delivery-hero {
        padding: 30px 20px;
    }

    .method-card {
        padding: 20px;
    }

    .method-icon {
        font-size: 32px;
    }

    .faq-question {
        padding: 12px 15px;
    }

    .delivery-contacts {
        padding: 20px;
    }
}