.containers{
    margin-top: 150px;
}

.section-title {
    font-size: 1.8em;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 40px;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 10px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.card {
    width:80%;
    background-color: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin: 20px auto;
    padding: 20px;
}

.card h3 {
    font-size: 1.6em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.card p {
    font-size: 1.1em;
    color: var(--text-color);
    line-height: 1.6;
}

.card ul {
    list-style: none;
}

.card li {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 10px;
}

