.feature-category {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-category h4 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-category h4::before {
    content: "✓";
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.feature-category ul {
    list-style: none;
    padding-left: 0;
    columns: 2;
    column-gap: 2rem;
}

.feature-category li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
    break-inside: avoid;
    color: rgba(255,255,255,0.9);
}

.feature-category li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
    font-size: 1.2em;
}

.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 0;
    color: white;
}

.stats-section {
    background: #f8f9fa;
    padding: 3rem 0;
    text-align: center;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #667eea;
}

.cta-section {
    background: linear-gradient(135deg, #ffd89b 0%, #19547b 100%);
    padding: 4rem 0;
    text-align: center;
    color: white;
}

@media (max-width: 768px) {
    .feature-category ul {
        columns: 1;
    }
}