.content-section {
    padding: 60px 0;
}

.content-card {
    background-color: var(--surface-color);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 8px 25px var(--shadow-color);
    max-width: 900px;
    margin: 0 auto;
}

.content-card h1 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 10px;
}

.content-card .subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.divider {
    height: 1px;
    background-color: var(--border-color);
    margin: 40px 0;
}

.content-card h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.content-card p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.features-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.features-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
}

.features-list li::before {
    content: '✔';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
}