.hero-section {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-section p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.delivery-section,
.payment-section,
.conditions-section {
    padding: 80px 0;
}

.delivery-section {
    background-color: #f8f9fa;
}

.payment-section {
    background-color: white;
}

.conditions-section {
    background-color: #f8f9fa;
}

.delivery-section h2,
.payment-section h2,
.conditions-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.delivery-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.delivery-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #4facfe, #00f2fe);
}

.delivery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.delivery-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.delivery-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #4facfe;
    margin-bottom: 25px;
}

.delivery-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    text-align: left;
}

.delivery-card li {
    color: #666;
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.delivery-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4facfe;
    font-weight: bold;
}

.address,
.note {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    margin-top: 15px;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.payment-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.payment-card:hover {
    transform: translateY(-5px);
    border-color: #4facfe;
}

.payment-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.payment-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.payment-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.payment-features {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.feature {
    background: #4facfe;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.condition-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.condition-item:hover {
    transform: translateY(-5px);
}

.condition-item h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.condition-item p {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .delivery-grid,
    .payment-grid,
    .conditions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .delivery-card,
    .payment-card,
    .condition-item {
        padding: 25px 20px;
    }
    
    .delivery-section h2,
    .payment-section h2,
    .conditions-section h2 {
        font-size: 2rem;
    }
}