<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.title-section {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #e3e2e0;
    padding: 120px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.main-page-title {
    line-height: 1.25;
    padding: 4px 0;
    letter-spacing: 0.5px;
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary-text-color);
    text-align: center;
}

@media (max-width: 1200px) {
    .main-page-title {
        font-size: 32px;
    }
}

@media (max-width: 991px) {
    .title-section {
        padding: 20px 30px;
        min-height: 104px;
    }
    .main-page-title {
        font-size: 26px;
    }
}

@media(max-width: 767px) {
    .title-section {
        margin-bottom: 20px;
        background-image: none !important;
        background-color: var(--secondary-background-color);
    }
}
</pre></body></html>