/* Why Xenum Hosting Section Styles */
.why-xenum-section {
    padding: 3rem 0;
    background-color: #f8f9fa;
    margin-top: 2rem;
}

.why-xenum-section h2 {
    text-align: center;
    color: #1e3a8a;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
}

.feature-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.feature-card {
    background-color: white;
    border-radius: 0.5rem;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    fill: #2563eb;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 0.75rem;
}

.feature-description {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .why-xenum-section {
        padding: 2rem 0;
    }
    
    .why-xenum-section h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-card {
        width: 100%;
        max-width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .feature-card {
        min-width: 200px;
    }
}
