/* Why Choose PentestNow Section */
.why-choose-section {
    position: relative;
    padding: 120px 0;
    background: var(--dark-bg);
    overflow: hidden;
}

.why-choose-section .container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.why-choose-section .section-header h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #fff;
    text-align: center;
}

.why-choose-section .section-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.features-row {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 4rem;
    width: 100%;
}

.feature-box {
    flex: 1;
    min-width: 200px;
    max-width: calc(25% - 1.125rem);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(79, 172, 254, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 1.8rem;
    color: #4facfe;
}

.feature-content h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 1rem;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .features-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }
    
    .feature-box {
        flex: 0 1 calc(50% - 1rem);
        max-width: calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 80px 0;
    }

    .why-choose-section .section-header h2 {
        font-size: 2.8rem;
    }

    .features-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .feature-box {
        flex: 1;
        max-width: 100%;
    }
} 