/* Единый стиль для всех заголовков h2 */
@font-face {
    font-family: 'MyFont';
    src: url('../fonts/pristina1.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

h2 {
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 300;
    font-size: 3rem;
    color: #38382d;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.5px;
    position: relative;
}
/* Подчеркивание для заголовков */
h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #38382d;
    opacity: 0.3;
}
/* Золотистый цвет заголовков в тёмных секциях */
.about-header h2,
.services h2,
.contact h2 {
    color: #e6c28f;           /* золотисто-бежевый */
}

/* Подчёркивание тоже делаем золотистым */
.about-header h2::after,
.services h2::after,
.contact h2::after {
    background: #e6c28f;
    opacity: 0.6;
}