/* Delivery Section Styles */
.delivery {
    padding: 6rem 0;
    background-color: var(--color-bg-lightest);
}

.delivery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
}

.delivery-title {
    text-align: right;
    font-size: clamp(2rem, 10vw, 6rem);
    font-weight: 900;
    background: linear-gradient(
        45deg, 
        var(--color-accent-metallic), 
        var(--color-accent-highlight)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 0.9;
    margin-bottom: 2rem;
}

.delivery-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.delivery-text {
    flex: 1;
    font-weight: 300;
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--color-text-dark);
}

@media screen and (max-width: 768px) {
    .delivery-title {
        font-size: clamp(2rem, 10vw, 6rem);
    }
    
    .delivery-content {
        flex-direction: column;
    }
}
