* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
    background: #f4f7fb;
    color: #2f3542;
}

a {
    color: inherit;
}

.page-wrapper {
    min-height: 100vh;
}

.top-header {
    width: 100%;
    background: #ffffff;
    padding: 18px 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 20;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.logo-container img {
    max-height: 62px;
    max-width: 160px;
    object-fit: contain;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    white-space: nowrap;
}

.top-link {
    text-decoration: none;
    color: #2E8B57;
    font-weight: 600;
}

.top-button {
    text-decoration: none;
    background: #2E8B57;
    color: #ffffff;
    padding: 11px 22px;
    border-radius: 8px;
    font-weight: 600;
}

.hero-section {
    padding: 70px 6% 55px;
    background: linear-gradient(135deg, #eef8f1 0%, #ffffff 55%, #f4f7fb 100%);
}

.hero-content {
    max-width: 1080px;
    margin: 0 auto;
    text-align: center;
}

.program-label {
    display: inline-block;
    background: #e6f4ea;
    color: #2E8B57;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content h1 {
    margin: 0 auto 22px;
    max-width: 950px;
    font-size: 38px;
    line-height: 1.3;
    color: #1d3557;
}

.hero-content p {
    max-width: 820px;
    margin: 0 auto 32px;
    font-size: 18px;
    line-height: 1.8;
    color: #5d6675;
}

.hero-buttons,
.bottom-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary,
.download-link {
    display: inline-block;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    transition: all 0.25s ease;
}

.btn-primary {
    background: #2E8B57;
    color: #ffffff;
    padding: 15px 30px;
}

.btn-primary:hover {
    background: #246b45;
}

.btn-secondary {
    background: #ffffff;
    color: #2E8B57;
    border: 2px solid #2E8B57;
    padding: 13px 28px;
}

.btn-secondary:hover {
    background: #eef8f1;
}

.content-card {
    width: 88%;
    max-width: 1100px;
    margin: -20px auto 60px;
    background: #ffffff;
    border-radius: 18px;
    padding: 38px 46px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

.document-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    border-bottom: 1px solid #e4e9f0;
    padding-bottom: 22px;
    margin-bottom: 30px;
}

.document-toolbar h2 {
    margin: 0;
    color: #1d3557;
    font-size: 28px;
}

.download-link {
    background: #edf7f0;
    color: #2E8B57;
    padding: 11px 18px;
    border: 1px solid #cfe8d6;
}

.doc-section {
    padding: 22px 0;
    border-bottom: 1px solid #edf0f5;
}

.doc-section h3 {
    margin: 0 0 16px;
    color: #1d3557;
    font-size: 23px;
}

.doc-section h4 {
    margin: 22px 0 10px;
    color: #2E8B57;
    font-size: 18px;
}

.doc-section h5 {
    margin: 18px 0 8px;
    color: #34495e;
    font-size: 16px;
}

.doc-section p,
.doc-section li {
    font-size: 16px;
    line-height: 1.85;
    color: #4f5b6b;
}

.doc-section ul,
.doc-section ol {
    padding-left: 24px;
}

.note-box {
    background: #fff8e8;
    border-left: 5px solid #f0b429;
    padding: 16px 18px;
    border-radius: 10px;
    margin: 20px 0;
}

.note-box ul {
    margin-bottom: 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.step-box {
    background: #f7fcf8;
    border: 1px solid #d7eadc;
    border-radius: 14px;
    padding: 18px;
}

.step-box strong {
    color: #2E8B57;
}

.step-box p {
    margin-bottom: 0;
}

.contact-section a {
    color: #2E8B57;
    font-weight: 600;
}

.bottom-actions {
    padding-top: 35px;
}

@media screen and (max-width: 850px) {
    .top-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .logo-container {
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .content-card {
        width: 92%;
        padding: 28px 22px;
    }

    .document-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

@media screen and (max-width: 520px) {
    .logo-container img {
        max-height: 48px;
        max-width: 130px;
    }

    .header-actions {
        width: 100%;
        justify-content: center;
    }

    .hero-section {
        padding: 45px 5% 40px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .content-card {
        margin-bottom: 35px;
    }
}
