/* Стили для статических страниц */

.static-page {
    max-width: 1440px;
    width: 1440px;
    margin: 0 auto;
    padding: 40px 0 80px;
    min-height: 500px;
}

.static-page__container {
    max-width: 1440px;
    width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.static-page__breadcrumbs {
    margin-bottom: 32px;
    font-size: 14px;
    color: #6B7280;
}

.static-page__breadcrumbs a {
    color: #0FC998;
    text-decoration: none;
    transition: color 0.2s;
}

.static-page__breadcrumbs a:hover {
    color: #0DB589;
}

.breadcrumb-separator {
    margin: 0 8px;
    color: #D1D5DB;
}

.static-page__content {
    background: white;
    padding: 48px 60px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.static-page__content h1 {
    font-size: 36px;
    font-weight: 700;
    color: #1F2937;
    margin: 0 0 32px 0;
    line-height: 1.2;
}

.static-page__content h2 {
    font-size: 28px;
    font-weight: 600;
    color: #374151;
    margin: 40px 0 20px 0;
    line-height: 1.3;
}

.static-page__content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #4B5563;
    margin: 32px 0 16px 0;
}

.static-page__content p {
    font-size: 16px;
    line-height: 1.7;
    color: #4B5563;
    margin: 0 0 16px 0;
}

.static-page__content ul,
.static-page__content ol {
    margin: 16px 0 24px 20px;
    line-height: 1.7;
    color: #4B5563;
}

.static-page__content li {
    margin-bottom: 8px;
}

.static-page__content strong {
    color: #0FC998;
    font-weight: 600;
}

.static-page__content a {
    color: #0FC998;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.static-page__content a:hover {
    border-bottom-color: #0FC998;
}

/* Стили для блоков контента */
.static-page__content .contact-block,
.static-page__content .delivery-method,
.static-page__content .support-channel,
.static-page__content .vacancy,
.static-page__content .faq,
.static-page__content .project {
    background: #F9FAFB;
    padding: 24px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #0FC998;
}

.static-page__content .contact-block h3,
.static-page__content .delivery-method h3,
.static-page__content .support-channel h3,
.static-page__content .vacancy h3,
.static-page__content .faq h3,
.static-page__content .project h3 {
    margin-top: 0;
    color: #0FC998;
}

/* Адаптив */
@media (max-width: 768px) {
    .static-page {
        width: 100% !important;
        max-width: 100% !important;
        padding: 20px 0 40px;
        min-height: auto;
    }
    
    .static-page__container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 16px;
    }
    
    .static-page__content {
        padding: 32px 24px;
    }
    
    .static-page__content h1 {
        font-size: 28px;
    }
    
    .static-page__content h2 {
        font-size: 22px;
    }
    
    .static-page__content h3 {
        font-size: 18px;
    }
}

