/**
 * Benefits Grid Component CSS
 * Styles for benefits/features sections used across multiple pages
 */

.benefits-section {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.benefits-section h2 {
    font-size: 2rem;
    color: var(--primary-color, #484169);
    margin-bottom: 1.5rem;
}

.benefits-intro {
    color: var(--text-muted, #6c757d);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.benefits-list {
    display: flex;
    flex-direction: column;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    transition: transform 0.3s ease;
}

.benefit-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.benefit-item:hover {
    transform: translateX(5px);
}

.benefit-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--primary-color, #484169);
}

.benefit-content {
    flex: 1;
}

.benefit-content h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .benefits-section {
        padding: 1.5rem;
    }

    .benefit-item {
        padding: 1rem;
    }
}
