.delivery-container {
    padding-bottom: 5rem;
}

.delivery-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.delivery-card:hover {
    transform: translateY(-5px);
}

.delivery-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.delivery-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 1.2rem;
}

.delivery-card p {
    color: var(--text-color);
    line-height: 1.6;
}

.map-section {
    margin-top: 4rem;
}

.map-wrapper {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0,0,0,0.1);
}

.location-info {
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 20px;
    margin-top: 2rem;
}

.location-info h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .delivery-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
}
