.export-intro-section,
.export-strengths-section,
.export-process-section,
.export-docs-section,
.export-cta-section {
    background: #f6f0e6;
}

.export-intro-section {
    padding: 60px 0 40px;
}

.export-intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: start;
}

.export-intro-content h2,
.export-process-note h2,
.export-cta-card h2 {
    margin: 0 0 16px;
    color: #13294b;
    line-height: 1.08;
}

.export-intro-content h2,
.export-process-note h2 {
    font-size: 42px;
}

.export-intro-content p,
.export-process-note p {
    margin: 0 0 18px;
    color: #5f6270;
    font-size: 17px;
    line-height: 1.9;
}

.export-intro-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(249,246,239,0.96));
    border: 1px solid rgba(200,154,67,0.18);
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 14px 34px rgba(19, 41, 75, 0.05);
    display: grid;
    gap: 16px;
}

.export-mini-box {
    background: rgba(255,255,255,0.75);
    border: 1px solid rgba(19,41,75,0.08);
    border-radius: 18px;
    padding: 20px;
}

.export-mini-box strong {
    color: #13294b;
    font-size: 20px;
    line-height: 1.5;
}

.export-strengths-section {
    padding: 20px 0 50px;
}

.export-strengths-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.export-strength-card {
    background: #fff;
    border: 1px solid #e2d8c8;
    border-radius: 22px;
    padding: 26px;
    box-shadow: 0 10px 24px rgba(19, 41, 75, 0.05);
}

.export-strength-card h3 {
    margin: 0 0 12px;
    color: #13294b;
    font-size: 24px;
}

.export-strength-card p {
    margin: 0;
    color: #5f6270;
    line-height: 1.8;
    font-size: 16px;
}

.export-process-section {
    padding: 10px 0 50px;
}

.export-process-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 28px;
    align-items: start;
}

.export-process-card {
    background: linear-gradient(180deg, #ffffff, #f8f4ec);
    border: 1px solid rgba(200,154,67,0.22);
    border-radius: 28px;
    padding: 30px;
    box-shadow: 0 14px 36px rgba(19, 41, 75, 0.06);
}

.export-process-card h3 {
    margin: 0 0 16px;
    color: #13294b;
    font-size: 28px;
}

.export-docs-section {
    padding: 10px 0 60px;
}

.export-docs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.export-doc-card {
    background: #fff;
    border: 1px solid #e2d8c8;
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 10px 24px rgba(19, 41, 75, 0.05);
}

.export-doc-card strong {
    display: block;
    margin-bottom: 10px;
    color: #13294b;
    font-size: 22px;
    line-height: 1.2;
}

.export-doc-card span {
    color: #5f6270;
    font-size: 16px;
    line-height: 1.8;
}

.export-cta-section {
    padding: 10px 0 90px;
}

.export-cta-card {
    text-align: center;
    background:
        radial-gradient(circle at top right, rgba(200,154,67,0.16), transparent 24%),
        radial-gradient(circle at bottom left, rgba(19,41,75,0.06), transparent 26%),
        linear-gradient(180deg, #ffffff, #f8f4ec);
    border: 1px solid rgba(200,154,67,0.24);
    border-radius: 30px;
    padding: 48px 42px;
    box-shadow: 0 20px 48px rgba(19, 41, 75, 0.07);
}

.export-cta-card h2 {
    font-size: 42px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #13294b;
    line-height: 1.08;
}

.export-cta-card p {
    margin: 0 auto 24px;
    max-width: 760px;
    color: #5f6270;
    font-size: 18px;
    line-height: 1.85;
}

.export-cta-buttons {
    justify-content: center;
}

@media (max-width: 900px) {
    .export-intro-grid,
    .export-strengths-grid,
    .export-process-grid,
    .export-docs-grid {
        grid-template-columns: 1fr;
    }

    .export-intro-content h2,
    .export-process-note h2,
    .export-cta-card h2 {
        font-size: 30px;
    }

    .export-intro-card,
    .export-strength-card,
    .export-process-card,
    .export-doc-card,
    .export-cta-card {
        padding: 24px;
        border-radius: 22px;
    }

    .export-cta-buttons {
        flex-direction: column;
    }

    .export-cta-buttons .btn-gold,
    .export-cta-buttons .btn-outline-dark {
        width: 100%;
        text-align: center;
    }
}