.feature-section {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    padding: 40px;
}

.feature-section .features-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-section .feature-row {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.feature-section .feature-box {
    flex: 1;
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.feature-section .feature-icon {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.feature-section .feature-title {
    color: #2c3e50 !important;
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 10px;
}

.feature-section .feature-list {
    padding-left: 20px;
    margin: 0;
}

.feature-section .feature-list li {
    margin-bottom: 10px;
    line-height: 1.5;
    color: #333;
}

.feature-section .feature-list strong {
    color: #2c3e50;
    font-weight: 600;
}

@media (max-width: 768px) {
    .feature-section .feature-row {
        flex-direction: column;
    }
}