/* css/mentions.css */

/* PAGE HEADER */
.page-header {
    padding: 160px 0 60px;
}

.page-title {
    font-size: 40px;
    font-weight: 800;
}

/* LEGALS CONTENT */
.text-container {
    background: #FFFFFF;
}

.text-container h2 {
    font-size: 20px;
    color: var(--text-dark);
    margin: 40px 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-yellow);
    display: inline-block;
}

.text-container p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.text-container p strong {
    color: var(--text-dark);
}

.text-container ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.text-container li {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 10px;
    list-style-type: disc;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .page-title {
        font-size: 32px;
    }

    .text-container h2 {
        font-size: 18px;
    }
}