/* Контейнер для текста */
.static-text .container {
    max-width: 900px; /* комфортная ширина для чтения */
    margin: 0 auto;
    padding: 40px 20px;
}

/* Заголовки */
.static-text h1,
.static-text h2,
.static-text h3 {
    font-family: 'Playfair Display', serif;
    color: #111;
    line-height: 1.3;
    margin-bottom: 20px;
}

.static-text h1 {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 700;
}

.static-text h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

.static-text h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 500;
}

.static-text p {
    margin-bottom: 15px;
    font-size: 16px;
    color: #444;
}

.static-text ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.static-text ul li {
    margin-bottom: 8px;
}

.static-text a {
    color: #007bff;
    text-decoration: underline;
}

.static-text a:hover {
    text-decoration: none;
    color: #0056b3;
}

.static-text span {
    font-weight: 500;
}

.static-text section {
    margin-bottom: 40px;
}

.static-text a[href^="mailto:"] {
    color: #007bff;
    text-decoration: underline;
}

.static-text a[href^="mailto:"]:hover {
    color: #0056b3;
}

@media (max-width: 768px) {
    .static-text .container {
        padding: 20px 15px;
    }

    .static-text h1 {
        font-size: 26px;
    }

    .static-text h2 {
        font-size: 22px;
    }

    .static-text h3 {
        font-size: 18px;
    }

    .static-text p {
        font-size: 15px;
    }
}
