/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.features-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.features-description {
    text-align: center;
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px auto 0;
    max-width: 1350px;
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #2A6478;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: #E1723A;
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2A6478;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
    color: #E1723A;
}

.feature-description {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: white;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 40px;
}

.cta-button {
    margin-top: 30px;
}

.cta-button .btn {
    display: inline-block;
    padding: 15px 40px;
    background: #2A6478;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button .btn:hover {
    background: #E1723A;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .features-section,
    .cta-section {
        padding: 60px 0;
    }
    
    .features-title,
    .cta-title {
        font-size: 2rem;
    }
    
    .features-description,
    .cta-description {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .cta-button .btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .features-title,
    .cta-title {
        font-size: 1.75rem;
    }
    
    .feature-card {
        padding: 25px 15px;
    }
    
    .feature-title {
        font-size: 1.25rem;
    }
}

/* Fulfillment Steps Section */
.fulfillment-steps {
    padding: 60px 20px;
    background: #f7f9fb;
    text-align: center;
    font-family: 'Helvetica Neue', sans-serif;
}

.fulfillment-steps .container {
    max-width: 1200px;
    margin: 0 auto;
}

.fulfillment-steps .section-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 40px;
    color: #2a6478;
}

.fulfillment-steps .steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.fulfillment-steps .step {
    flex: 1 1 220px;
    max-width: 250px;
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.fulfillment-steps .step:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.fulfillment-steps i {
    font-size: 36px;
    color: #E1723A;
    margin-bottom: 15px;
}

.fulfillment-steps h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.fulfillment-steps p {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

/* Responsive Design for Fulfillment Steps */
@media (max-width: 768px) {
    .fulfillment-steps {
        padding: 40px 15px;
    }
    
    .fulfillment-steps .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .fulfillment-steps .steps {
        gap: 20px;
    }
    
    .fulfillment-steps .step {
        flex: 1 1 100%;
        max-width: 100%;
        padding: 25px 15px;
    }
    
    .fulfillment-steps i {
        font-size: 32px;
    }
    
    .fulfillment-steps h3 {
        font-size: 18px;
    }
    
    .fulfillment-steps p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .fulfillment-steps .section-title {
        font-size: 24px;
    }
    
    .fulfillment-steps .step {
        padding: 20px 15px;
    }
}
