.features {
    padding: 60px 20px;
    background-color: #fafafa;
}

.features h1 {
    font-size: 2.5em;
    margin-bottom: 0.5rem;
    color: #333;
    text-align: center;
}

.features .lead {
    font-size: 1.3em;
    color: #6759c3;
    text-align: center;
    margin-bottom: 3rem;
}

.features-sections {
    max-width: 800px;
    margin: 0 auto;
}

.features-section {
    background: white;
    padding: 0.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.features-section h2 {
    color: #6759c3;
    font-size: 1.5em;
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.features-section ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.features-section ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #555;
}

.features-section ul li::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    color: #6759c3;
}

@media (max-width: 768px) {
    .features {
        padding: 40px 20px;
    }

    .features-section {
        padding: 1rem;
    }
} 