/* Unique section wrapper */
.cipd-features-section {
    background: #ffffff;
    padding: 60px 20px;
    text-align: center;
    font-family: Arial, sans-serif;
}

.cipd-features-section .section-title {
    font-size: 32px;
    font-weight: 700;
    color: #8839a8;
    margin-bottom: 50px;
    line-height: 1.3;
    text-transform: uppercase;
}

/* 2-per-row layout */
.cipd-features-section .features-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

/* Feature box styling */
.cipd-features-section .feature-box {
    width: 45%;
    border: 2px solid #8839a8;
    border-radius: 8px;
    padding: 25px 20px;
    background: #ffffff;
    transition: 0.3s ease;
    text-align: center;
}

.cipd-features-section .feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.cipd-features-section .feature-box img {
    width: 60px;
    margin-bottom: 15px;
}

.cipd-features-section .feature-box h3 {
    color: #8839a8;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
}

.cipd-features-section .feature-box p {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
}

/* Mobile responsive fix */
@media (max-width: 768px) {
    .cipd-features-section .features-row {
        flex-direction: column;
        gap: 20px;
    }

    .cipd-features-section .feature-box {
        width: 100%;
    }
}
