/* Use Case Detail Page Styles */

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.feature-item {
    background: white;
    padding: 32px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-item h3 {
    color: var(--primary-color);
    margin-bottom: 16px;
}

.feature-item p {
    color: var(--text-secondary);
    margin: 0;
}

/* Testimonials Section - styles are handled by testimonials.css component */

/* CTA Section */
.cta-section {
    background: #5b3df5;
    color: white;
    text-align: center;
}

.cta-section .section-title {
    color: white;
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto 32px;
}

.cta-actions {
    display: flex;
    justify-content: center;
}

