/* ===================================
   ОБЩИЕ СТИЛИ ВНУТРЕННИХ СТРАНИЦ
=================================== */
.inner-page {
    padding: 0 0 60px;
    color: #1a1c23;
}

.inner-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-hero {
    text-align: center;
    margin-bottom: 40px;
}

.page-hero-title {
    font-size: 36px;
    color: #1a1c23;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: normal;
}

.page-hero-subtitle {
    font-size: 18px;
    color: #666;
    font-weight: normal;
    line-height: 1.5;
}

.page-hero-accent {
    width: 56px;
    height: 4px;
    background: #8bbc08;
    margin: 0 auto 18px;
}

.content-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    margin-bottom: 25px;
    border-top: 3px solid #8bbc08;
}

.content-card h2 {
    font-size: 22px;
    color: #2b1b80;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: normal;
}

.content-card h3 {
    font-size: 18px;
    color: #1a1c23;
    margin: 20px 0 10px;
    font-weight: normal;
}

.content-card p,
.content-card li {
    line-height: 1.7;
    color: #444;
    font-weight: normal;
}

.content-card p {
    margin-bottom: 12px;
}

.content-card ul {
    padding-left: 20px;
    margin-bottom: 12px;
}

.content-grid-2 {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
    align-items: start;
}

.stats-card {
    background: #1a1c23;
    color: #ffffff;
    padding: 28px 24px;
    border-radius: 8px;
}

.stats-card h3 {
    color: #8bbc08;
    text-transform: uppercase;
    font-size: 16px;
    margin-bottom: 20px;
}

.stat-row + .stat-row {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-value {
    display: block;
    font-size: 28px;
    color: #8bbc08;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: #a0a5b5;
}

.quote-box {
    background: #f0f4f8;
    border-left: 5px solid #8bbc08;
    padding: 20px 22px;
    border-radius: 0 8px 8px 0;
    margin-top: 20px;
}

.quote-box p {
    margin: 0;
    color: #333;
    font-style: italic;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #d90429;
    color: #ffffff !important;
    text-decoration: none !important;
    height: 50px;
    padding: 0 25px;
    font-size: 15px;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.btn-primary:hover {
    background-color: #ef233c;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #2b1b80;
    color: #ffffff !important;
    text-decoration: none !important;
    height: 50px;
    padding: 0 25px;
    font-size: 15px;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.btn-secondary:hover {
    background-color: #3f2ca8;
}

@media (max-width: 900px) {
    .content-grid-2 {
        grid-template-columns: 1fr;
    }
}

.page-with-sidebar {
    align-items: start;
}

.page-sidebar {
    min-width: 0;
}

.cms-page-title {
    font-size: 28px;
    color: #1a1c23;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: normal;
}

.cms-page-body {
    line-height: 1.7;
    color: #444;
}

.cms-page-body img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .inner-page {
        padding-bottom: 40px;
    }

    .page-hero {
        margin-bottom: 28px;
    }

    .page-hero-title {
        font-size: 26px;
    }

    .page-hero-subtitle {
        font-size: 15px;
    }

    .content-card {
        padding: 18px;
    }

    .content-card h2 {
        font-size: 19px;
    }

    .cms-page-title {
        font-size: 22px;
    }
}
