.opt_header {
    background: linear-gradient(135deg, #ed1c24 0%, #c4161c 100%);
    color: white;
    padding: 40px 30px;
    text-align: center;
    margin-bottom: 25px;
    border-radius: 5px;
    margin-top: 25px;
}
.opt_header h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    text-shadow: 1px 1px 3px rgb(0 0 0 / 30%);
}
.opt_header .subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}
.delivery-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.delivery-text {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.delivery-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.highlight {
    color: #ed1c24;
    font-weight: 600;
}

.delivery-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.method-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(237, 28, 36, 0.1);
}

.method-icon {
    width: 60px;
    height: 60px;
    background: #fff5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: #ed1c24;
    font-size: 1.5rem;
}

.method-info h3 {
    color: #ed1c24;
    margin-bottom: 5px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.feature {
    background: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    font-size: 2.5rem;
    color: #ed1c24;
    margin-bottom: 15px;
}

.feature h3 {
    margin-bottom: 10px;
}

.cta-section {
    background: linear-gradient(135deg, #ed1c24 0%, #c4161c 100%);
    color: white;
    padding: 50px;
    border-radius: 10px;
    text-align: center;
    margin: 50px 0;
}

.cta-section h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.btn {
    display: inline-block;
    background: white;
    color: #ed1c24;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s;
}

.btn:hover {
    background: #f8f8f8;
    transform: translateY(-3px);
}

.sectionif > h3 {
    text-align: center;
    font-size: 20px;
    font-weight: 900;
}


@media (max-width: 768px) {
    .delivery-content {
        grid-template-columns: 1fr;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
}