.west-east h1 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.2;
}

.west-east h1 .highlight {
    color: #f97316;
}

.west-east .lead {
    font-size: 1.05rem;
    color: #b0b0b0;
    margin-bottom: 40px;
    border-left: 4px solid #f97316;
    padding-left: 20px;
    line-height: 1.7;
}

.west-east h2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin: 40px 0 14px;
}

.west-east h2 .highlight {
    color: #f97316;
}

.west-east h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #f97316;
    margin: 28px 0 10px;
}

.west-east p {
    color: #c0c0c0;
    margin-bottom: 14px;
    font-size: 0.98rem;
}

.west-east p strong {
    color: #ffffff;
}

.west-east ul {
    color: #c0c0c0;
    font-size: 0.95rem;
    margin: 6px 0 12px 20px;
    list-style-type: disc;
}

.west-east ul li {
    margin-bottom: 4px;
}

.west-east .result-block {
    background: #151515;
    border-radius: 12px;
    padding: 18px 22px;
    margin: 16px 0;
    border-left: 4px solid #f97316;
}

.west-east .result-block p {
    margin: 0;
    font-size: 1rem;
    color: #e0e0e0;
}

.west-east .result-block .highlight {
    color: #f97316;
    font-weight: 600;
}

.west-east .result-block.green {
    border-left-color: #51cf66;
}

.west-east .result-block.green .highlight {
    color: #51cf66;
}

.west-east .result-block.red {
    border-left-color: #ff6b6b;
}

.west-east .result-block.red .highlight {
    color: #ff6b6b;
}

.west-east .result-block.blue {
    border-left-color: #4d8aff;
}

.west-east .result-block.blue .highlight {
    color: #4d8aff;
}

.west-east .result-block.purple {
    border-left-color: #a78bfa;
}

.west-east .result-block.purple .highlight {
    color: #a78bfa;
}

.west-east .comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px 0;
}

.west-east .comparison-grid .col {
    background: #151515;
    border-radius: 12px;
    padding: 20px 24px;
    border: 1px solid #2a2a2a;
}

.west-east .comparison-grid .col h3 {
    margin-top: 0;
    font-size: 1.1rem;
}

.west-east .comparison-grid .col ul {
    margin: 4px 0 0 18px;
    list-style-type: disc;
}

.west-east .comparison-grid .col ul li {
    margin-bottom: 6px;
    font-size: 0.92rem;
    color: #c0c0c0;
}

.west-east .comparison-grid .col.west {
    border-left: 4px solid #51cf66;
}

.west-east .comparison-grid .col.russia {
    border-left: 4px solid #ff6b6b;
}

.west-east .comparison-grid .col.west h3 {
    color: #51cf66;
}

.west-east .comparison-grid .col.russia h3 {
    color: #ff6b6b;
}

.west-east .cta-block {
    background: linear-gradient(135deg, #1a1a2e, #2a1f0f);
    border-radius: 16px;
    padding: 28px 32px;
    margin: 32px 0 16px;
    border: 1px solid #f97316;
    text-align: center;
}

.west-east .cta-block h2 {
    color: #ffffff;
    margin: 0 0 8px;
    font-size: 1.2rem;
}

.west-east .cta-block p {
    color: #b0b0b0;
    margin: 0 auto 16px;
    font-size: 0.95rem;
}

.west-east .btn {
    display: inline-block;
    background: #f97316;
    color: #0c0c0c;
    font-weight: 600;
    padding: 12px 40px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.2s;
}

.west-east .btn:hover {
    background: #e85d0e;
}

.west-east .quote-block {
    background: #121212;
    border-radius: 12px;
    padding: 20px 24px;
    margin: 20px 0;
    border: 1px solid #2a2a2a;
    font-style: italic;
    color: #d0d0d0;
    font-size: 1rem;
}

.west-east .quote-block .author {
    font-style: normal;
    color: #888;
    font-size: 0.85rem;
    margin-top: 8px;
}

@media (max-width: 768px) {
    .west-east h1 {
        font-size: 1.8rem;
    }

    .west-east .comparison-grid {
        grid-template-columns: 1fr;
    }

    .west-east .cta-block {
        padding: 24px 20px;
    }

    .west-east .container {
        padding: 30px 16px;
    }
}