.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--accent-color);
    padding: 60px 0;
    margin-bottom: 40px;
}

.page-card {
    background: var(--background-color);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    scroll-margin-top: 100px;
}

.section-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.section-content {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.section-content a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.definition-box {
    background: #d1ecf1;
    border-left: 4px solid #0c5460;
    padding: 1.5rem;
    margin: 0 0 1.5rem 0;
    border-radius: 8px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.list-custom {
    list-style: none;
    padding-left: 0;
}

.list-custom li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
}

.list-custom li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}
