html,
body {
    margin: 0;
    padding: 0;
}

body {
    min-height: 100dvh;
    overflow-x: hidden;
    font-family: 'Playfair Display', Georgia, serif;
}

@keyframes focus_dash_spin {
    from {
        outline-offset: 2px;
        transform: rotate(0deg);
    }

    to {
        outline-offset: 4px;
        transform: rotate(360deg);
    }
}

*:focus-visible {
    outline: 2px dashed #38786E;
    outline-offset: 3px;
    animation: focus_dash_spin 2.4s linear infinite;
}

.site_header {
    position: relative;
    background: #38786E;
    border-bottom: 1px solid rgba(56, 120, 110, 0.3);
    box-shadow: -1px 5px 25px 0 rgba(56, 120, 110, 0.11);
    overflow: hidden;
}

.site_header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #38786E 0%, #2d6259 60%, #1e4d47 100%);
    pointer-events: none;
}

.header_top_bar {
    position: relative;
    z-index: 2;
    border-bottom: 1px solid rgba(231, 242, 237, 0.15);
    padding: 8px 40px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    max-width: 1366px;
    margin: 0 auto;
}

.header_contact_link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 15px;
    line-height: 1.2;
    color: rgba(231, 242, 237, 0.85);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.15s ease-out;
}

.header_contact_link:hover {
    color: #E7F2ED;
}

.header_contact_sep {
    width: 1px;
    height: 16px;
    background: rgba(231, 242, 237, 0.25);
    flex-shrink: 0;
}

.header_main_row {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 16px 40px;
    max-width: 1366px;
    margin: 0 auto;
}

.logo_unit {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
}

.logo_img_box {
    width: 56px;
    height: 56px;
    background: #E7F2ED;
    border: 1px solid rgba(231, 242, 237, 0.6);
    box-shadow: -1px 3px 2px 0 rgba(56, 120, 110, 0.06), 0 0 0 3px rgba(231, 242, 237, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.logo_img_box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.brand_wordmark {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.brand_name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    color: #E7F2ED;
    letter-spacing: -0.02em;
}

.brand_descriptor {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.2;
    color: rgba(231, 242, 237, 0.7);
    letter-spacing: 0.04em;
}

.logo_nav_divider {
    width: 1px;
    height: 48px;
    background: rgba(231, 242, 237, 0.2);
    flex-shrink: 0;
}

.primary_nav {
    flex: 1;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.primary_nav a {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(231, 242, 237, 0.82);
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid transparent;
    border-radius: 5px;
    letter-spacing: 0.025em;
    transition: color 0.12s ease-out, background-color 0.18s ease, border-color 0.12s ease-out;
    white-space: nowrap;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.primary_nav a:hover {
    color: #E7F2ED;
    background-color: rgba(231, 242, 237, 0.1);
    border-color: rgba(231, 242, 237, 0.2);
}

.primary_nav a.active_pg {
    color: #E7F2ED;
    background-color: rgba(231, 242, 237, 0.15);
    border-color: rgba(231, 242, 237, 0.3);
}

.header_accent_strip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #84AC97 30%, #E7F2ED 60%, #84AC97 80%, transparent 100%);
    opacity: 0.6;
}

@media (max-width: 768px) {
    .header_top_bar {
        padding: 8px 16px;
        gap: 8px;
    }

    .header_main_row {
        padding: 16px;
        gap: 16px;
        flex-wrap: wrap;
    }

    .brand_descriptor {
        display: none;
    }

    .brand_name {
        font-size: 18px;
    }

    .logo_img_box {
        width: 44px;
        height: 44px;
    }

    .logo_nav_divider {
        display: none;
    }

    .primary_nav {
        width: 100%;
        gap: 8px;
    }

    .primary_nav a {
        font-size: 15px;
        padding: 8px 12px;
    }
}

@media (max-width: 375px) {
    .header_contact_link span.contact_label {
        display: none;
    }

    .primary_nav a {
        padding: 8px;
        font-size: 15px;
    }
}

.site_footer {
    background: #2d6259;
    border-top: 1px solid rgba(132, 172, 151, 0.25);
    box-shadow: -1px 10px 60px 0 rgba(56, 120, 110, 0.14);
    font-family: 'Playfair Display', Georgia, serif;
}

.footer_upper {
    max-width: 1366px;
    margin: 0 auto;
    padding: 80px 40px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.footer_nav_col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer_col_label {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    color: #84AC97;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer_nav_links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer_nav_links li a {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(231, 242, 237, 0.78);
    text-decoration: none;
    letter-spacing: 0.02em;
    display: inline-block;
    padding: 8px 0;
    min-height: 44px;
    display: flex;
    align-items: center;
    transition: color 0.15s ease-out;
}

.footer_nav_links li a:hover {
    color: #E7F2ED;
}

.footer_contact_col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer_contact_items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer_contact_entry {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer_contact_type {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    color: #84AC97;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.footer_contact_val {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(231, 242, 237, 0.82);
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: color 0.12s ease-out;
}

a.footer_contact_val:hover {
    color: #E7F2ED;
}

.footer_divider {
    max-width: 1366px;
    margin: 0 auto;
    height: 1px;
    background: rgba(132, 172, 151, 0.2);
}

.footer_bottom_strip {
    max-width: 1366px;
    margin: 0 auto;
    padding: 40px 40px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer_logo_box {
    width: 52px;
    height: 52px;
    background: #E7F2ED;
    border: 1px solid rgba(231, 242, 237, 0.5);
    box-shadow: -1px 3px 2px 0 rgba(56, 120, 110, 0.06), 0 0 0 2px rgba(231, 242, 237, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.footer_logo_box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.footer_copy {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(231, 242, 237, 0.5);
    letter-spacing: 0.03em;
    text-align: center;
}

@media (max-width: 768px) {
    .footer_upper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 16px 40px;
    }

    .footer_bottom_strip {
        padding: 40px 16px;
    }
}

@media (max-width: 375px) {
    .footer_upper {
        padding: 40px 16px 40px;
    }

    .footer_bottom_strip {
        padding: 40px 16px;
    }
}

.doc-block {
    max-width: 1366px;
    margin: 0 auto;
    padding: 80px 40px;
}

.doc-block h1 {
    font-size: 52px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #1b2e2b;
    margin-bottom: 40px;
    margin-top: 0;
}

.doc-block h2 {
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: #1b2e2b;
    margin-top: 80px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid #84AC97;
}

.doc-block h3 {
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: 0em;
    color: #38786E;
    margin-top: 40px;
    margin-bottom: 16px;
}

.doc-block h4 {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.01em;
    color: #38786E;
    margin-top: 40px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.doc-block h5 {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.02em;
    color: #2d5f57;
    margin-top: 16px;
    margin-bottom: 8px;
}

.doc-block h6 {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.02em;
    color: #4a7a72;
    margin-top: 16px;
    margin-bottom: 8px;
}

.doc-block p {
    font-size: 15px;
    line-height: 2.0;
    letter-spacing: 0.01em;
    color: #2a3a38;
    margin-top: 0;
    margin-bottom: 16px;
}

.doc-block ul {
    margin-top: 0;
    margin-bottom: 16px;
    padding-left: 40px;
    list-style: none;
}

.doc-block ol {
    margin-top: 0;
    margin-bottom: 16px;
    padding-left: 40px;
    list-style: none;
    counter-reset: policy-counter;
}

.doc-block ul li {
    font-size: 15px;
    line-height: 2.0;
    letter-spacing: 0.01em;
    color: #2a3a38;
    margin-bottom: 8px;
    position: relative;
    padding-left: 16px;
}

.doc-block ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 13px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #84AC97;
}

.doc-block ol li {
    font-size: 15px;
    line-height: 2.0;
    letter-spacing: 0.01em;
    color: #2a3a38;
    margin-bottom: 8px;
    position: relative;
    padding-left: 16px;
    counter-increment: policy-counter;
}

.doc-block ol li::before {
    content: counter(policy-counter) ".";
    position: absolute;
    left: -16px;
    top: 0;
    font-size: 15px;
    line-height: 2.0;
    color: #38786E;
    font-weight: 600;
}

.doc-block ul ul,
.doc-block ol ol,
.doc-block ul ol,
.doc-block ol ul {
    margin-top: 8px;
    margin-bottom: 8px;
}

.doc-block strong,
.doc-block b {
    font-weight: 700;
    color: #1b2e2b;
}

.doc-block em,
.doc-block i {
    font-style: italic;
    color: #2d5f57;
}

.doc-block a {
    color: #38786E;
    text-decoration: underline;
    text-decoration-color: #84AC97;
    text-underline-offset: 3px;
    transition: color 0.15s ease-out, text-decoration-color 0.2s ease;
}

.doc-block a:hover {
    color: #2d5f57;
    text-decoration-color: #38786E;
}

.doc-block a:visited {
    color: #4a7a72;
}

.doc-block hr {
    border: none;
    border-top: 1px solid #E7F2ED;
    margin-top: 40px;
    margin-bottom: 40px;
    box-shadow: -1px 3px 2px 0 rgba(56, 120, 110, 0.06);
}

@media (max-width: 1366px) {
    .doc-block {
        padding: 80px 40px;
    }
}

@media (max-width: 768px) {
    .doc-block {
        padding: 40px 16px;
    }

    .doc-block h1 {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .doc-block h2 {
        font-size: 18px;
        margin-top: 40px;
    }

    .doc-block h3 {
        font-size: 15px;
        margin-top: 40px;
    }

    .doc-block h4,
    .doc-block h5,
    .doc-block h6 {
        font-size: 15px;
        margin-top: 16px;
    }

    .doc-block ul {
        padding-left: 16px;
    }

    .doc-block ol {
        padding-left: 16px;
    }
}

@media (max-width: 375px) {
    .doc-block {
        padding: 40px 8px;
    }

    .doc-block h1 {
        font-size: 28px;
        letter-spacing: -0.01em;
    }

    .doc-block h2 {
        font-size: 18px;
    }

    .doc-block hr {
        margin-top: 40px;
        margin-bottom: 40px;
    }
}

.lrn_prog_det {
    max-width: 1366px;
    margin: 0 auto;
    overflow: hidden;
}

.lrn_prog_det .pg_top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
    background: #fff;
}

.lrn_prog_det .pg_top .txt_col {
    padding: 80px 40px 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.lrn_prog_det .pg_top .txt_col::before {
    content: "";
    position: absolute;
    top: 16px;
    left: 16px;
    width: 24px;
    height: 24px;
    border-top: 2px solid #38786E;
    border-left: 2px solid #38786E;
}

.lrn_prog_det .pg_top .txt_col::after {
    content: "";
    position: absolute;
    bottom: 16px;
    right: 0;
    width: 24px;
    height: 24px;
    border-bottom: 2px solid #84AC97;
    border-right: 2px solid #84AC97;
}

.lrn_prog_det .pg_top .meta_row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.lrn_prog_det .pg_top .meta_row .pub_date {
    font-size: 15px;
    line-height: 1.6;
    color: #38786E;
    letter-spacing: 0.04em;
}

.lrn_prog_det .pg_top .meta_row .sep {
    width: 4px;
    height: 4px;
    background: #84AC97;
    border-radius: 50%;
    display: inline-block;
}

.lrn_prog_det .pg_top .meta_row .views_ct {
    font-size: 15px;
    line-height: 1.6;
    color: #84AC97;
    letter-spacing: 0.04em;
}

.lrn_prog_det .pg_top .prog_ttl {
    font-size: 52px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #1a3a36;
    margin-bottom: 16px;
    font-weight: 700;
}

.lrn_prog_det .pg_top .prog_desc_short {
    font-size: 18px;
    line-height: 1.6;
    color: #2d4a45;
    max-width: 480px;
}

.lrn_prog_det .pg_top .img_col {
    position: relative;
    overflow: hidden;
}

.lrn_prog_det .pg_top .img_col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.2s ease-out;
}

.lrn_prog_det .pg_top .img_col:hover img {
    transform: scale(1.04);
}

.lrn_prog_det .pg_top .img_grad {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.lrn_prog_det .divider_a {
    height: 6px;
    background: #38786E;
    position: relative;
}

.lrn_prog_det .divider_a::after {
    content: "";
    display: block;
    height: 1px;
    background: #84AC97;
    margin-top: 3px;
}

.lrn_prog_det .prog_body {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    padding: 80px;
    background: #fff;
    align-items: start;
}

.lrn_prog_det .prog_body .desc_area {
    max-width: 680px;
}

.lrn_prog_det .prog_body .desc_area .desc_lbl {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #38786E;
    margin-bottom: 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.lrn_prog_det .prog_body .desc_area .desc_lbl::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #38786E;
    border-radius: 1px;
    transform: rotate(45deg);
}

.lrn_prog_det .prog_body .desc_area .desc_txt {
    font-size: 18px;
    line-height: 1.6;
    color: #2d4a45;
    margin-bottom: 16px;
}

.lrn_prog_det .prog_body .desc_area .desc_txt em {
    color: #38786E;
    font-style: normal;
    font-weight: 600;
}

.lrn_prog_det .prog_body .desc_area .desc_txt h2 {
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: #1a3a36;
    margin-bottom: 16px;
    margin-top: 40px;
    font-weight: 700;
}

.lrn_prog_det .prog_body .desc_area .desc_txt ol {
    padding-left: 40px;
    margin-bottom: 16px;
}

.lrn_prog_det .prog_body .desc_area .desc_txt ol li {
    font-size: 18px;
    line-height: 1.6;
    color: #2d4a45;
    margin-bottom: 8px;
    position: relative;
}

.lrn_prog_det .prog_body .desc_area .desc_txt dl {
    margin-bottom: 16px;
}

.lrn_prog_det .prog_body .desc_area .desc_txt dt {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 700;
    color: #1a3a36;
    margin-bottom: 8px;
}

.lrn_prog_det .prog_body .desc_area .desc_txt dd {
    font-size: 18px;
    line-height: 1.6;
    color: #2d4a45;
    margin-left: 40px;
    margin-bottom: 16px;
}

.lrn_prog_det .prog_body .desc_area .desc_txt details {
    border: 1px solid #84AC97;
    border-radius: 5px;
    padding: 16px;
    margin-bottom: 16px;
}

.lrn_prog_det .prog_body .desc_area .desc_txt summary {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 600;
    color: #38786E;
    cursor: pointer;
    list-style: none;
}

.lrn_prog_det .prog_body .desc_area .desc_txt summary::-webkit-details-marker {
    display: none;
}

.lrn_prog_det .prog_body .side_panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 40px;
}

.lrn_prog_det .prog_body .price_card {
    background: #E7F2ED;
    border-radius: 5px;
    padding: 40px;
    box-shadow: -1px 5px 25px 0 rgba(56, 120, 110, 0.11);
    position: relative;
    overflow: hidden;
}

.lrn_prog_det .prog_body .price_card::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(132, 172, 151, 0.25) 0%, rgba(132, 172, 151, 0) 70%);
    pointer-events: none;
}

.lrn_prog_det .prog_body .price_card .price_lbl {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #38786E;
    margin-bottom: 8px;
}

.lrn_prog_det .prog_body .price_card .price_val {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 700;
    color: #1a3a36;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.lrn_prog_det .prog_body .price_card .enroll_btn {
    display: block;
    width: 100%;
    padding: 16px 40px;
    background: #38786E;
    color: #fff !important;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.15s ease-out, box-shadow 0.15s ease-out;
    box-shadow: -1px 3px 2px 0 rgba(56, 120, 110, 0.06);
    letter-spacing: 0.01em;
}

.lrn_prog_det .prog_body .price_card .enroll_btn:hover {
    background: #2d6560;
    box-shadow: -1px 5px 25px 0 rgba(56, 120, 110, 0.11);
}

.lrn_prog_det .prog_body .price_card .enroll_btn:focus {
    outline: 2px solid #38786E;
    outline-offset: 2px;
}

.lrn_prog_det .prog_body .price_card .enroll_btn:active {
    background: #245550;
}

.lrn_prog_det .prog_body .like_row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
}

.lrn_prog_det .prog_body .like_row .like_ico {
    width: 20px;
    height: 20px;
    fill: #38786E;
}

.lrn_prog_det .prog_body .like_row .like_num {
    font-size: 15px;
    line-height: 1.6;
    color: #38786E;
    font-weight: 600;
}

.lrn_prog_det .prog_body .like_row .like_txt {
    font-size: 15px;
    line-height: 1.6;
    color: #2d4a45;
}

.lrn_prog_det .prog_body .print_card {
    background: #fff;
    border: 1px solid #84AC97;
    border-radius: 5px;
    padding: 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.lrn_prog_det .prog_body .print_card .print_btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 15px;
    line-height: 1.6;
    color: #38786E;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 5px;
    transition: background-color 0.1s ease-out;
    width: 100%;
}

.lrn_prog_det .prog_body .print_card .print_btn:hover {
    background: #E7F2ED;
}

.lrn_prog_det .prog_body .print_card .print_btn:focus {
    outline: 2px solid #38786E;
    outline-offset: 2px;
}

.lrn_prog_det .prog_body .print_card .print_btn svg {
    width: 18px;
    height: 18px;
    fill: #38786E;
    flex-shrink: 0;
}

.lrn_prog_det .divider_b {
    height: 1px;
    background: #E7F2ED;
    margin: 0 80px;
}

.lrn_prog_det .prog_plan {
    padding: 80px;
    background: #E7F2ED;
}

.lrn_prog_det .prog_plan .plan_hdr {
    text-align: center;
    margin-bottom: 40px;
}

.lrn_prog_det .prog_plan .plan_hdr h2 {
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: #1a3a36;
    font-weight: 700;
    margin-bottom: 8px;
}

.lrn_prog_det .prog_plan .plan_hdr p {
    font-size: 18px;
    line-height: 1.6;
    color: #2d4a45;
    text-align: left;
    max-width: 560px;
    margin: 0 auto;
}

.lrn_prog_det .prog_plan .plan_body {
    max-width: 860px;
    margin: 0 auto;
    border: 1px dashed #38786E;
    border-radius: 5px;
    padding: 40px;
    background: #fff;
    box-shadow: -1px 10px 60px 0 rgba(56, 120, 110, 0.14);
}

.lrn_prog_det .prog_plan .plan_body p {
    font-size: 18px;
    line-height: 1.6;
    color: #2d4a45;
    margin-bottom: 16px;
}

.lrn_prog_det .prog_plan .plan_body h2 {
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: #1a3a36;
    font-weight: 700;
    margin-bottom: 16px;
    margin-top: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.lrn_prog_det .prog_plan .plan_body h2::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 1px;
    background: #84AC97;
    flex-shrink: 0;
}

.lrn_prog_det .prog_plan .plan_body em {
    color: #38786E;
    font-style: normal;
    font-weight: 600;
}

.lrn_prog_det .prog_plan .plan_body ul {
    list-style: none;
    padding: 0;
    margin-bottom: 16px;
}

.lrn_prog_det .prog_plan .plan_body ul li {
    font-size: 18px;
    line-height: 1.6;
    color: #2d4a45;
    padding-left: 40px;
    margin-bottom: 8px;
    position: relative;
}

.lrn_prog_det .prog_plan .plan_body ul li::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 10px;
    width: 14px;
    height: 14px;
    border: 2px solid #38786E;
    border-radius: 1px;
}

.lrn_prog_det .prog_plan .plan_body ul li.checked::before {
    background: #38786E;
}

.lrn_prog_det .prog_plan .plan_body ul li.checked::after {
    content: "";
    position: absolute;
    left: 11px;
    top: 12px;
    width: 8px;
    height: 5px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
}

.lrn_prog_det .prog_plan .plan_body dl {
    margin-bottom: 16px;
}

.lrn_prog_det .prog_plan .plan_body dt {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 700;
    color: #1a3a36;
    margin-bottom: 8px;
}

.lrn_prog_det .prog_plan .plan_body dd {
    font-size: 18px;
    line-height: 1.6;
    color: #2d4a45;
    margin-left: 40px;
    margin-bottom: 16px;
}

.lrn_prog_det .prog_plan .plan_body blockquote {
    border-top: 3px solid #38786E;
    border-bottom: 1px solid #84AC97;
    padding: 16px 40px;
    margin: 16px 0;
    background: #E7F2ED;
    border-radius: 1px;
}

.lrn_prog_det .prog_plan .plan_body blockquote p {
    font-size: 18px;
    line-height: 1.6;
    color: #1a3a36;
    font-style: italic;
    margin: 0;
}

.lrn_prog_det .prog_plan .plan_body figure {
    margin: 16px 0;
}

.lrn_prog_det .prog_plan .plan_body figcaption {
    font-size: 15px;
    line-height: 1.6;
    color: #84AC97;
    margin-top: 8px;
}

.lrn_prog_det .icon_cycle {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 40px 80px;
    background: #fff;
}

.lrn_prog_det .icon_cycle .ic_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.35;
}

.lrn_prog_det .icon_cycle .ic_item:nth-child(1) {
    animation: ic_seq 4.8s 0s infinite;
}

.lrn_prog_det .icon_cycle .ic_item:nth-child(2) {
    animation: ic_seq 4.8s 0.8s infinite;
}

.lrn_prog_det .icon_cycle .ic_item:nth-child(3) {
    animation: ic_seq 4.8s 1.6s infinite;
}

.lrn_prog_det .icon_cycle .ic_item:nth-child(4) {
    animation: ic_seq 4.8s 2.4s infinite;
}

.lrn_prog_det .icon_cycle .ic_item:nth-child(5) {
    animation: ic_seq 4.8s 3.2s infinite;
}

.lrn_prog_det .icon_cycle .ic_item:nth-child(6) {
    animation: ic_seq 4.8s 4.0s infinite;
}

@keyframes ic_seq {
    0% {
        opacity: 0.35;
        transform: translateY(0);
    }

    8% {
        opacity: 1;
        transform: translateY(-4px);
    }

    20% {
        opacity: 1;
        transform: translateY(-4px);
    }

    35% {
        opacity: 0.35;
        transform: translateY(0);
    }

    100% {
        opacity: 0.35;
        transform: translateY(0);
    }
}

.lrn_prog_det .icon_cycle .ic_item svg {
    width: 40px;
    height: 40px;
    fill: #38786E;
}

.lrn_prog_det .icon_cycle .ic_item span {
    font-size: 15px;
    line-height: 1.6;
    color: #38786E;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-align: center;
    max-width: 80px;
}

.lrn_prog_det .drop_in {
    animation: drop_settle 0.2s ease-out both;
}

.lrn_prog_det .drop_in_d1 {
    animation-delay: 0.05s;
}

.lrn_prog_det .drop_in_d2 {
    animation-delay: 0.1s;
}

.lrn_prog_det .drop_in_d3 {
    animation-delay: 0.15s;
}

@keyframes drop_settle {
    0% {
        opacity: 0;
        transform: translateY(-18px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1366px) {
    .lrn_prog_det .pg_top .txt_col {
        padding: 80px 40px 80px 40px;
    }

    .lrn_prog_det .prog_body {
        padding: 80px 40px;
    }

    .lrn_prog_det .prog_plan {
        padding: 80px 40px;
    }

    .lrn_prog_det .divider_b {
        margin: 0 40px;
    }

    .lrn_prog_det .icon_cycle {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .lrn_prog_det .pg_top {
        grid-template-columns: 1fr;
    }

    .lrn_prog_det .pg_top .img_col {
        height: 280px;
        order: -1;
    }

    .lrn_prog_det .pg_top .txt_col {
        padding: 40px 16px;
    }

    .lrn_prog_det .pg_top .prog_ttl {
        font-size: 28px;
    }

    .lrn_prog_det .prog_body {
        grid-template-columns: 1fr;
        padding: 40px 16px;
        gap: 40px;
    }

    .lrn_prog_det .prog_body .side_panel {
        position: static;
    }

    .lrn_prog_det .prog_body .desc_area {
        max-width: 100%;
    }

    .lrn_prog_det .prog_plan {
        padding: 40px 16px;
    }

    .lrn_prog_det .prog_plan .plan_body {
        padding: 16px;
    }

    .lrn_prog_det .divider_b {
        margin: 0 16px;
    }

    .lrn_prog_det .icon_cycle {
        flex-wrap: wrap;
        padding: 40px 16px;
        gap: 16px;
    }
}

@media (max-width: 375px) {
    .lrn_prog_det .pg_top .prog_ttl {
        font-size: 28px;
    }

    .lrn_prog_det .pg_top .txt_col {
        padding: 40px 8px;
    }

    .lrn_prog_det .prog_body {
        padding: 40px 8px;
    }

    .lrn_prog_det .prog_plan {
        padding: 40px 8px;
    }

    .lrn_prog_det .icon_cycle {
        padding: 40px 8px;
    }

    .lrn_prog_det .divider_b {
        margin: 0 8px;
    }
}

@media print {
    .lrn_prog_det .pg_top .img_col {
        display: none;
    }

    .lrn_prog_det .pg_top {
        grid-template-columns: 1fr;
    }

    .lrn_prog_det .pg_top .txt_col::before,
    .lrn_prog_det .pg_top .txt_col::after {
        display: none;
    }

    .lrn_prog_det .icon_cycle {
        display: none;
    }

    .lrn_prog_det .divider_a,
    .lrn_prog_det .divider_b {
        display: none;
    }

    .lrn_prog_det .prog_body {
        grid-template-columns: 1fr;
        padding: 16px 0;
    }

    .lrn_prog_det .prog_body .side_panel {
        position: static;
    }

    .lrn_prog_det .prog_body .print_card {
        display: none;
    }

    .lrn_prog_det .prog_body .price_card {
        box-shadow: none;
        border: 1px solid #ccc;
    }

    .lrn_prog_det .prog_plan {
        background: #fff;
        padding: 16px 0;
    }

    .lrn_prog_det .prog_plan .plan_body {
        box-shadow: none;
        border: 1px solid #ccc;
    }

    .lrn_prog_det .drop_in {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .lrn_prog_det .icon_cycle .ic_item {
        animation: none;
        opacity: 1;
    }
}

.cert_pg {
    background: #ffffff;
    overflow-x: clip;
    position: relative;
}

.cert_pg .pg_strip {
    width: 100%;
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 40px;
}

.cert_pg .title_band {
    position: relative;
    padding: 80px 0 40px;
    background: linear-gradient(118deg, #38786E 0%, #38786E 45%, #E7F2ED 45%, #E7F2ED 100%);
    overflow: hidden;
}

.cert_pg .title_band::before {
    content: "\201C";
    position: absolute;
    left: 2%;
    top: -16px;
    font-size: 280px;
    line-height: 1.2;
    color: rgba(231, 242, 237, 0.18);
    pointer-events: none;
    z-index: 0;
    font-style: normal;
}

.cert_pg .title_band .pg_strip {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.cert_pg .title_band .band_text {
    flex: 1 1 0;
    min-width: 0;
    padding: 16px 0;
}

.cert_pg .title_band .band_img {
    flex: 0 0 420px;
    max-width: 420px;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    box-shadow: -1px 5px 25px 0 rgba(56, 120, 110, 0.11);
}

.cert_pg .title_band .band_img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    filter: blur(0px);
    transition: filter 0.18s ease-out;
}

.cert_pg .title_band .band_img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 60%, rgba(231, 242, 237, 0.38) 100%);
    pointer-events: none;
}

.cert_pg .band_label {
    display: inline-block;
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.08em;
    color: #E7F2ED;
    background: rgba(56, 120, 110, 0.55);
    border-radius: 1px;
    padding: 8px 16px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.cert_pg .band_h1 {
    font-size: 52px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin: 0 0 16px;
}

.cert_pg .band_h1 .accent_phrase {
    color: #84AC97;
    -webkit-background-clip: unset;
}

.cert_pg .band_sub {
    font-size: 18px;
    line-height: 1.6;
    color: #E7F2ED;
    max-width: 480px;
    margin: 0;
}

.cert_pg .zigzag_div {
    width: 100%;
    line-height: 0;
    overflow: hidden;
}

.cert_pg .zigzag_div svg {
    display: block;
    width: 100%;
}

.cert_pg .cert_list_sec {
    background: #ffffff;
    padding: 80px 0;
    position: relative;
}

.cert_pg .cert_list_sec .pg_strip {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.cert_pg .sec_eyebrow {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    flex-direction: column;
}

.cert_pg .geo_anchor {
    width: 28px;
    height: 6px;
    background: #38786E;
    border-radius: 1px;
    display: block;
    margin: 0 auto;
}

.cert_pg .sec_h2 {
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: #1b3530;
    text-align: center;
    margin: 0;
}

.cert_pg .sec_lead {
    font-size: 18px;
    line-height: 1.6;
    color: #3a5a54;
    text-align: left;
    max-width: 640px;
    margin: 0 auto;
}

.cert_pg .cert_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
}

.cert_pg .cert_card {
    background: #ffffff;
    border-radius: 5px;
    box-shadow: -1px 5px 25px 0 rgba(56, 120, 110, 0.11);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: box-shadow 0.15s ease-out, transform 0.15s ease-out;
    position: relative;
}

.cert_pg .cert_card:hover {
    box-shadow: -1px 10px 60px 0 rgba(56, 120, 110, 0.14);
    transform: translateY(-3px);
}

.cert_pg .cert_card .card_num {
    font-size: 52px;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: #E7F2ED;
    font-weight: 700;
    position: absolute;
    top: 16px;
    right: 16px;
    pointer-events: none;
}

.cert_pg .cert_card .card_ico {
    width: 48px;
    height: 48px;
    background: #E7F2ED;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cert_pg .cert_card .card_ico svg {
    width: 24px;
    height: 24px;
}

.cert_pg .cert_card .card_name {
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: #1b3530;
    margin: 0;
    font-weight: 600;
}

.cert_pg .cert_card .card_body {
    font-size: 15px;
    line-height: 1.6;
    color: #3a5a54;
    margin: 0;
    flex: 1;
}

.cert_pg .cert_card .card_tag {
    display: inline-block;
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.04em;
    color: #38786E;
    background: #E7F2ED;
    border-radius: 34px;
    padding: 8px 16px;
    align-self: flex-start;
}

.cert_pg .cert_card .card_tag.active {
    background: #38786E;
    color: #ffffff;
}

.cert_pg .dashed_conn {
    border-top: 2px dashed #84AC97;
    width: 60px;
    display: block;
    margin: 8px 0;
    flex-shrink: 0;
}

.cert_pg .dark_band {
    background: #1b3530;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cert_pg .dark_band::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at 70% 30%, rgba(132, 172, 151, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.cert_pg .dark_band .pg_strip {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 80px;
}

.cert_pg .dark_col_left {
    flex: 0 0 400px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cert_pg .dark_col_left .dark_h2 {
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: #E7F2ED;
    margin: 0;
}

.cert_pg .dark_col_left .dark_sub {
    font-size: 15px;
    line-height: 1.6;
    color: #84AC97;
    margin: 0;
}

.cert_pg .dark_col_left .img_frame {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: -1px 10px 60px 0 rgba(56, 120, 110, 0.14);
    margin-top: 8px;
}

.cert_pg .dark_col_left .img_frame img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.18s ease-out;
}

.cert_pg .dark_col_left .img_frame:hover img {
    transform: scale(1.04);
}

.cert_pg .dark_col_right {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cert_pg .feat_row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border-radius: 5px;
    transition: background 0.12s ease-out;
}

.cert_pg .feat_row:hover {
    background: rgba(132, 172, 151, 0.08);
}

.cert_pg .feat_row .feat_ico {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: rgba(132, 172, 151, 0.15);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert_pg .feat_row .feat_ico svg {
    width: 18px;
    height: 18px;
}

.cert_pg .feat_row .feat_text {
    flex: 1;
}

.cert_pg .feat_row .feat_text .feat_name {
    font-size: 15px;
    line-height: 1.6;
    color: #E7F2ED;
    font-weight: 600;
    margin: 0 0 8px;
}

.cert_pg .feat_row .feat_text .feat_desc {
    font-size: 15px;
    line-height: 1.6;
    color: #84AC97;
    margin: 0;
}

.cert_pg .feat_divider {
    height: 1px;
    background: rgba(132, 172, 151, 0.15);
    margin: 0 16px;
}

.cert_pg .process_sec {
    background: #E7F2ED;
    padding: 80px 0;
}

.cert_pg .process_sec .pg_strip {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.cert_pg .process_sec .sec_h2 {
    color: #1b3530;
}

.cert_pg .process_sec .sec_lead {
    color: #3a5a54;
    text-align: left;
}

.cert_pg .steps_row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    position: relative;
}

.cert_pg .steps_row::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 2px;
    border-top: 2px dashed #84AC97;
    z-index: 0;
    pointer-events: none;
}

.cert_pg .step_item {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    padding: 0 16px;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(24px);
    animation: step_appear 0.2s ease-out forwards;
}

.cert_pg .step_item:nth-child(1) {
    animation-delay: 0.05s;
}

.cert_pg .step_item:nth-child(2) {
    animation-delay: 0.1s;
}

.cert_pg .step_item:nth-child(3) {
    animation-delay: 0.15s;
}

.cert_pg .step_item:nth-child(4) {
    animation-delay: 0.2s;
}

@keyframes step_appear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cert_pg .step_num {
    width: 56px;
    height: 56px;
    border-radius: 34px;
    background: #38786E;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: -1px 5px 25px 0 rgba(56, 120, 110, 0.11);
    flex-shrink: 0;
    transition: background 0.15s ease-out, box-shadow 0.15s ease-out;
}

.cert_pg .step_item:hover .step_num {
    background: #1b3530;
    box-shadow: -1px 10px 60px 0 rgba(56, 120, 110, 0.14);
}

.cert_pg .step_label {
    font-size: 15px;
    line-height: 1.6;
    color: #1b3530;
    font-weight: 600;
    margin: 0;
}

.cert_pg .step_desc {
    font-size: 15px;
    line-height: 1.6;
    color: #3a5a54;
    margin: 0;
}

.cert_pg .checklist_wrap {
    width: 100%;
    max-width: 720px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cert_pg .chk_item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: #ffffff;
    border-radius: 5px;
    box-shadow: -1px 3px 2px 0 rgba(56, 120, 110, 0.06);
    transition: box-shadow 0.12s ease-out;
}

.cert_pg .chk_item:hover {
    box-shadow: -1px 5px 25px 0 rgba(56, 120, 110, 0.11);
}

.cert_pg .chk_box {
    width: 20px;
    height: 20px;
    border-radius: 1px;
    border: 2px solid #38786E;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    background: #E7F2ED;
}

.cert_pg .chk_box svg {
    width: 12px;
    height: 12px;
}

.cert_pg .chk_text {
    font-size: 15px;
    line-height: 1.6;
    color: #1b3530;
    margin: 0;
}

.cert_pg .chk_text span {
    color: #38786E;
    font-weight: 600;
}

@media (max-width: 1366px) {
    .cert_pg .cert_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .cert_pg .title_band {
        background: linear-gradient(160deg, #38786E 0%, #38786E 55%, #E7F2ED 55%, #E7F2ED 100%);
        padding: 40px 0;
    }

    .cert_pg .title_band .pg_strip {
        flex-direction: column;
        gap: 16px;
    }

    .cert_pg .title_band .band_img {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
    }

    .cert_pg .band_h1 {
        font-size: 28px;
    }

    .cert_pg .cert_grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cert_pg .dark_band .pg_strip {
        flex-direction: column;
        gap: 40px;
    }

    .cert_pg .dark_col_left {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
    }

    .cert_pg .steps_row {
        flex-direction: column;
        gap: 16px;
    }

    .cert_pg .steps_row::before {
        display: none;
    }

    .cert_pg .step_item {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
    }

    .cert_pg .pg_strip {
        padding: 0 16px;
    }
}

@media (max-width: 375px) {
    .cert_pg .band_h1 {
        font-size: 28px;
    }

    .cert_pg .cert_card {
        padding: 16px;
    }

    .cert_pg .dark_band {
        padding: 40px 0;
    }

    .cert_pg .cert_list_sec {
        padding: 40px 0;
    }

    .cert_pg .process_sec {
        padding: 40px 0;
    }
}

.bse {
    max-width: 1366px;
    margin: 0 auto;
    overflow-x: clip;
}

.bse .ttl-blk {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    padding: 80px 80px 80px 80px;
    gap: 40px;
    background: #fff;
}

.bse .ttl-atm {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: 1px;
}

.bse .ttl-atm span {
    position: absolute;
    border-radius: 34px;
    filter: blur(60px);
    opacity: 0.18;
}

.bse .ttl-atm span:nth-child(1) {
    width: 320px;
    height: 220px;
    background: #38786E;
    top: -40px;
    left: -60px;
}

.bse .ttl-atm span:nth-child(2) {
    width: 240px;
    height: 180px;
    background: #84AC97;
    bottom: 0;
    left: 200px;
}

.bse .ttl-atm span:nth-child(3) {
    width: 200px;
    height: 200px;
    background: #E7F2ED;
    top: 40px;
    right: 320px;
}

.bse .ttl-txt {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.bse .ttl-eyebrow {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.bse .ttl-dash {
    width: 28px;
    height: 2px;
    background: #84AC97;
    flex-shrink: 0;
}

.bse .ttl-label {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.08em;
    color: #38786E;
    text-transform: uppercase;
}

.bse .ttl-h1 {
    font-size: 68px;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: #1a2e2b;
    color: #162523 !important;
    margin: 0;
    animation: ttl-drop 0.5s ease-out both;
}

.bse .ttl-desc {
    font-size: 18px;
    line-height: 1.6;
    color: #3d5450;
    max-width: 520px;
    margin: 0;
}

.bse .ttl-img-strip {
    flex: 0 0 280px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    border-radius: 5px;
    overflow: hidden;
}

.bse .ttl-img-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: blur(0px);
    display: block;
}

.bse .ttl-img-strip::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, transparent 40%, rgba(56, 120, 110, 0.22) 100%);
    pointer-events: none;
}

@keyframes ttl-drop {
    0% {
        opacity: 0;
        transform: translateY(-18px);
    }

    70% {
        opacity: 1;
        transform: translateY(3px);
    }

    85% {
        transform: translateY(-2px);
    }

    100% {
        transform: translateY(0);
    }
}

.bse .prac-sec {
    padding: 80px 80px;
    background: #E7F2ED;
    position: relative;
}

.bse .prac-noise {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.045;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
}

.bse .prac-top {
    display: flex;
    flex-direction: row;
    gap: 80px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.bse .prac-left {
    flex: 0 0 420px;
}

.bse .sec-geo {
    width: 16px;
    height: 16px;
    background: #38786E;
    border-radius: 1px;
    margin-bottom: 16px;
    transform: rotate(45deg);
}

.bse .prac-h2 {
    font-size: 52px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #162523;
    margin: 0 0 16px 0;
    text-align: center;
}

.bse .prac-sub {
    font-size: 18px;
    line-height: 1.6;
    color: #2e4a45;
    text-align: left;
    margin: 0;
}

.bse .prac-right {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bse .prac-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    border-radius: 5px;
    padding: 16px;
    box-shadow: -1px 3px 2px 0 rgba(56, 120, 110, 0.06);
    transition: box-shadow 0.18s ease-out, transform 0.15s ease-out;
}

.bse .prac-item:hover {
    box-shadow: -1px 5px 25px 0 rgba(56, 120, 110, 0.11);
    transform: translateY(-2px);
}

.bse .prac-num {
    font-size: 28px;
    line-height: 1.2;
    color: #84AC97;
    font-weight: 700;
    flex-shrink: 0;
    width: 40px;
    text-align: right;
}

.bse .prac-item-body {
    flex: 1 1 0;
}

.bse .prac-item-h {
    font-size: 18px;
    line-height: 1.6;
    color: #162523;
    margin: 0 0 8px 0;
}

.bse .prac-item-p {
    font-size: 15px;
    line-height: 1.6;
    color: #3d5450;
    margin: 0;
}

.bse .prac-img-row {
    margin-top: 40px;
    position: relative;
    z-index: 1;
    border-radius: 5px;
    overflow: hidden;
    height: 220px;
    box-shadow: -1px 5px 25px 0 rgba(56, 120, 110, 0.11);
}

.bse .prac-img-row img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    transition: transform 0.2s ease-out;
}

.bse .prac-img-row:hover img {
    transform: scale(1.04);
}

.bse .ltv-sec {
    padding: 80px 80px;
    background: #fff;
    display: flex;
    flex-direction: row;
    gap: 80px;
    align-items: center;
}

.bse .ltv-img-col {
    flex: 0 0 340px;
    position: relative;
}

.bse .ltv-img-wrap {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: -1px 10px 60px 0 rgba(56, 120, 110, 0.14);
    position: relative;
}

.bse .ltv-img-wrap img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 0.2s ease;
}

.bse .ltv-img-wrap:hover img {
    transform: scale(1.04);
}

.bse .ltv-bracket-l {
    position: absolute;
    top: -16px;
    left: -16px;
    width: 40px;
    height: 40px;
    border-top: 3px solid #38786E;
    border-left: 3px solid #38786E;
    border-radius: 1px;
    pointer-events: none;
}

.bse .ltv-bracket-r {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 40px;
    height: 40px;
    border-bottom: 3px solid #84AC97;
    border-right: 3px solid #84AC97;
    border-radius: 1px;
    pointer-events: none;
}

.bse .ltv-txt-col {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bse .ltv-h2 {
    font-size: 52px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #162523;
    margin: 0;
    text-align: center;
}

.bse .ltv-body {
    font-size: 15px;
    line-height: 1.6;
    color: #3d5450;
    margin: 0;
    max-width: 540px;
}

.bse .ltv-ranked {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

.bse .ltv-rank-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.bse .ltv-rank-pos {
    font-size: 15px;
    line-height: 1.6;
    color: #84AC97;
    font-weight: 700;
    width: 24px;
    flex-shrink: 0;
    text-align: center;
}

.bse .ltv-rank-label {
    font-size: 15px;
    line-height: 1.6;
    color: #162523;
    flex: 0 0 160px;
}

.bse .ltv-bar-track {
    flex: 1 1 0;
    height: 6px;
    background: #E7F2ED;
    border-radius: 34px;
    overflow: hidden;
}

.bse .ltv-bar-fill {
    height: 100%;
    background: #38786E;
    border-radius: 34px;
    animation: bar-grow 0.7s ease-out both;
}

@keyframes bar-grow {
    from {
        width: 0 !important;
    }
}

.bse .gap-sec {
    padding: 80px 80px;
    background: #162523;
    position: relative;
    overflow: hidden;
}

.bse .gap-sec-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.bse .gap-sec-deco span {
    position: absolute;
    border-radius: 34px;
    filter: blur(80px);
    opacity: 0.12;
}

.bse .gap-sec-deco span:nth-child(1) {
    width: 400px;
    height: 300px;
    background: #38786E;
    top: -80px;
    right: -80px;
}

.bse .gap-sec-deco span:nth-child(2) {
    width: 280px;
    height: 200px;
    background: #84AC97;
    bottom: -40px;
    left: 80px;
}

.bse .gap-inner {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.bse .gap-h2 {
    font-size: 52px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #E7F2ED;
    text-align: center;
    margin: 0;
}

.bse .gap-h2 .acc {
    color: #84AC97;
}

.bse .gap-cols {
    display: flex;
    flex-direction: row;
    gap: 40px;
    width: 100%;
}

.bse .gap-col {
    flex: 1 1 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    padding: 40px;
    border: 1px solid rgba(132, 172, 151, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.bse .gap-col-label {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #84AC97;
    margin: 0 0 16px 0;
}

.bse .gap-col-h {
    font-size: 28px;
    line-height: 1.2;
    color: #E7F2ED;
    margin: 0 0 16px 0;
}

.bse .gap-col-p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(231, 242, 237, 0.72);
    margin: 0;
}

.bse .gap-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bse .gap-arrow {
    width: 40px;
    height: 40px;
    border-radius: 34px;
    background: #38786E;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bse .gap-arrow svg {
    width: 20px;
    height: 20px;
    fill: #E7F2ED;
}

.bse .gap-checklist {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.bse .gap-check-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
}

.bse .gap-chk {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 1px;
    background: #38786E;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.bse .gap-chk svg {
    width: 12px;
    height: 12px;
    stroke: #E7F2ED;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bse .gap-check-txt {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(231, 242, 237, 0.85);
}

.bse .appr-sec {
    padding: 80px 80px;
    background: #fff;
    position: relative;
}

.bse .appr-divider-sym {
    text-align: center;
    font-size: 28px;
    line-height: 1.2;
    color: #84AC97;
    margin-bottom: 40px;
    letter-spacing: 0.2em;
    font-weight: 300;
    user-select: none;
}

.bse .appr-top {
    text-align: center;
    margin-bottom: 40px;
}

.bse .appr-h2 {
    font-size: 52px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #162523;
    margin: 0 0 16px 0;
}

.bse .appr-sub {
    font-size: 18px;
    line-height: 1.6;
    color: #3d5450;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.bse .appr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.bse .appr-card {
    border-radius: 5px;
    padding: 40px;
    background: #E7F2ED;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: -1px 3px 2px 0 rgba(56, 120, 110, 0.06);
    transition: box-shadow 0.16s ease, transform 0.14s ease-out;
    position: relative;
}

.bse .appr-card:hover {
    box-shadow: -1px 5px 25px 0 rgba(56, 120, 110, 0.11);
    transform: translateY(-3px);
}

.bse .appr-card-geo {
    width: 12px;
    height: 12px;
    background: #38786E;
    border-radius: 1px;
    flex-shrink: 0;
}

.bse .appr-card-h {
    font-size: 18px;
    line-height: 1.6;
    color: #162523;
    margin: 0;
}

.bse .appr-card-p {
    font-size: 15px;
    line-height: 1.6;
    color: #3d5450;
    margin: 0;
}

.bse .appr-bottom {
    display: flex;
    flex-direction: row;
    gap: 80px;
    align-items: flex-start;
}

.bse .appr-bottom-txt {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bse .appr-bottom-h {
    font-size: 28px;
    line-height: 1.2;
    color: #162523;
    margin: 0;
}

.bse .appr-bottom-p {
    font-size: 15px;
    line-height: 1.6;
    color: #3d5450;
    margin: 0;
    max-width: 480px;
}

.bse .appr-bottom-links {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

.bse .appr-lnk {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    line-height: 1.6;
    color: #38786E;
    text-decoration: none;
    border-radius: 5px;
    padding: 8px 16px;
    border: 1px solid #84AC97;
    transition: background 0.18s ease-out, color 0.15s ease-out;
}

.bse .appr-lnk:hover {
    background: #38786E;
    color: #E7F2ED;
}

.bse .appr-lnk svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.bse .tt-wrap {
    position: relative;
    display: inline-block;
}

.bse .tt-wrap .tt-bubble {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #162523;
    color: #E7F2ED;
    font-size: 15px;
    line-height: 1.6;
    padding: 8px 16px;
    border-radius: 5px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.15s ease-out;
    z-index: 10;
    box-shadow: -1px 5px 25px 0 rgba(56, 120, 110, 0.11);
}

.bse .tt-wrap .tt-bubble::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #162523;
}

.bse .tt-wrap:focus-within .tt-bubble,
.bse .tt-wrap:hover .tt-bubble {
    opacity: 1;
}

@media (max-width: 1366px) {
    .bse .ttl-blk {
        padding: 80px 40px;
    }

    .bse .prac-sec {
        padding: 80px 40px;
    }

    .bse .ltv-sec {
        padding: 80px 40px;
    }

    .bse .gap-sec {
        padding: 80px 40px;
    }

    .bse .appr-sec {
        padding: 80px 40px;
    }
}

@media (max-width: 768px) {
    .bse .ttl-blk {
        flex-direction: column;
        padding: 40px 16px;
        gap: 16px;
    }

    .bse .ttl-h1 {
        font-size: 52px;
    }

    .bse .ttl-img-strip {
        flex: 0 0 200px;
        width: 100%;
        height: 200px;
    }

    .bse .prac-sec {
        padding: 40px 16px;
    }

    .bse .prac-top {
        flex-direction: column;
        gap: 40px;
    }

    .bse .prac-left {
        flex: 0 0 auto;
    }

    .bse .prac-h2 {
        font-size: 28px;
    }

    .bse .ltv-sec {
        flex-direction: column;
        padding: 40px 16px;
        gap: 40px;
    }

    .bse .ltv-img-col {
        flex: 0 0 auto;
        width: 100%;
    }

    .bse .ltv-img-wrap img {
        height: 240px;
    }

    .bse .ltv-h2 {
        font-size: 28px;
    }

    .bse .gap-sec {
        padding: 40px 16px;
    }

    .bse .gap-cols {
        flex-direction: column;
        gap: 16px;
    }

    .bse .gap-h2 {
        font-size: 28px;
    }

    .bse .gap-col {
        padding: 16px;
    }

    .bse .appr-sec {
        padding: 40px 16px;
    }

    .bse .appr-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .bse .appr-h2 {
        font-size: 28px;
    }

    .bse .appr-bottom {
        flex-direction: column;
        gap: 16px;
    }

    .bse .appr-card {
        padding: 16px;
    }
}

@media (max-width: 375px) {
    .bse .ttl-h1 {
        font-size: 28px;
    }

    .bse .ttl-desc {
        font-size: 15px;
    }

    .bse .prac-h2 {
        font-size: 28px;
    }

    .bse .gap-h2 {
        font-size: 28px;
    }

    .bse .appr-h2 {
        font-size: 28px;
    }

    .bse .ltv-h2 {
        font-size: 28px;
    }
}

.cont-pg {
    max-width: 100%;
    overflow-x: hidden;
}

.cont-pg .frm-area {
    max-width: 1366px;
    margin: 0 auto;
    padding: 80px 40px;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}

.cont-pg .frm-aside {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: sticky;
    top: 40px;
}

.cont-pg .aside-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: #E7F2ED;
    border-radius: 34px;
    width: fit-content;
}

.cont-pg .aside-badge .dot-swatch {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #38786E;
    flex-shrink: 0;
}

.cont-pg .aside-badge span {
    font-size: 15px;
    color: #38786E;
    line-height: 1.2;
    letter-spacing: 0.03em;
}

.cont-pg .aside-decl {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cont-pg .aside-decl h1 {
    font-size: 52px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #1a2e2b;
    margin: 0;
}

.cont-pg .aside-decl h1 .accent-span {
    color: #84AC97;
}

.cont-pg .aside-decl p {
    font-size: 18px;
    line-height: 1.6;
    color: #2d4a45;
    margin: 0;
    max-width: 420px;
}

.cont-pg .contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.cont-pg .contact-details-list li {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cont-pg .contact-details-list .det-label {
    font-size: 15px;
    color: #84AC97;
    line-height: 1.2;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.cont-pg .contact-details-list .det-val {
    font-size: 18px;
    color: #1a2e2b;
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.15s ease-out;
}

.cont-pg .contact-details-list a.det-val:hover {
    color: #38786E;
}

.cont-pg .geo-note {
    font-size: 15px;
    color: #4a6b64;
    line-height: 1.6;
    padding: 16px;
    background-color: #E7F2ED;
    border-radius: 5px;
}

.cont-pg .frm-panel {
    background: #ffffff;
    border-radius: 5px;
    padding: 40px;
    box-shadow: -1px 10px 60px 0 rgba(56, 120, 110, 0.14);
}

.cont-pg .frm-head {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 40px;
}

.cont-pg .frm-head h2 {
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: #1a2e2b;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cont-pg .frm-head h2::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #84AC97;
    border-radius: 1px;
    flex-shrink: 0;
    transform: rotate(45deg);
}

.cont-pg .frm-head p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a6b64;
    margin: 0;
}

.cont-pg .frm-fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cont-pg .field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cont-pg .field-grp {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cont-pg .field-grp label {
    font-size: 15px;
    color: #2d4a45;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.cont-pg .field-grp input,
.cont-pg .field-grp select,
.cont-pg .field-grp textarea {
    padding: 16px;
    border: 1.5px solid #c8ddd7;
    border-radius: 5px;
    font-size: 15px;
    color: #1a2e2b;
    line-height: 1.6;
    background-color: #ffffff;
    transition: border-color 0.15s ease-out, box-shadow 0.2s ease-out;
    width: 100%;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
}

.cont-pg .field-grp input::placeholder,
.cont-pg .field-grp textarea::placeholder {
    color: rgba(56, 120, 110, 0.45);
}

.cont-pg .field-grp input:focus,
.cont-pg .field-grp select:focus,
.cont-pg .field-grp textarea:focus {
    border-color: #38786E;
    box-shadow: -1px 5px 25px 0 rgba(56, 120, 110, 0.11);
}

.cont-pg .field-grp select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2338786E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.cont-pg .field-grp select option {
    color: #1a2e2b;
}

.cont-pg .field-grp textarea {
    resize: vertical;
    min-height: 120px;
}

.cont-pg .channel-grp {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cont-pg .channel-grp legend {
    font-size: 15px;
    color: #2d4a45;
    line-height: 1.2;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
    display: block;
}

.cont-pg .channel-opts {
    display: flex;
    flex-direction: row;
    gap: 8px;
    flex-wrap: wrap;
}

.cont-pg .channel-opt {
    position: relative;
}

.cont-pg .channel-opt input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.cont-pg .channel-opt label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1.5px solid #c8ddd7;
    border-radius: 34px;
    font-size: 15px;
    color: #2d4a45;
    line-height: 1.2;
    cursor: pointer;
    transition: background-color 0.15s ease-out, border-color 0.15s ease-out, color 0.15s ease-out;
    user-select: none;
}

.cont-pg .channel-opt label::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1.5px solid #84AC97;
    transition: background-color 0.15s ease-out;
    flex-shrink: 0;
}

.cont-pg .channel-opt input[type="radio"]:checked+label {
    background-color: #E7F2ED;
    border-color: #38786E;
    color: #38786E;
}

.cont-pg .channel-opt input[type="radio"]:checked+label::before {
    background-color: #38786E;
    border-color: #38786E;
}

.cont-pg .channel-opt label:hover {
    background-color: #E7F2ED;
    border-color: #84AC97;
}

.cont-pg .channel-opt input[type="radio"]:focus+label {
    outline: 2px solid #38786E;
    outline-offset: 2px;
}

.cont-pg .privacy-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    padding: 16px;
    background-color: #E7F2ED;
    border-radius: 5px;
}

.cont-pg .privacy-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    accent-color: #38786E;
    cursor: pointer;
    margin-top: 2px;
}

.cont-pg .privacy-row .priv-txt {
    font-size: 15px;
    color: #2d4a45;
    line-height: 1.6;
    margin: 0;
}

.cont-pg .privacy-row .priv-txt a {
    color: #38786E;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.1s ease-out;
}

.cont-pg .privacy-row .priv-txt a:hover {
    color: #84AC97;
}

.cont-pg .frm-submit-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.cont-pg .btn-submit {
    padding: 16px 40px;
    background-color: #38786E;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.2;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.15s ease-out, box-shadow 0.2s ease-out;
    letter-spacing: 0.01em;
}

.cont-pg .btn-submit:hover {
    background-color: #2d6560;
    box-shadow: -1px 5px 25px 0 rgba(56, 120, 110, 0.11);
}

.cont-pg .btn-submit:active {
    background-color: #245550;
}

.cont-pg .btn-submit:focus {
    outline: 2px solid #84AC97;
    outline-offset: 3px;
}

.cont-pg .submit-note {
    font-size: 15px;
    color: #4a6b64;
    line-height: 1.6;
}

.cont-pg .info-strip {
    background-color: #38786E;
    padding: 40px;
}

.cont-pg .info-strip-inner {
    max-width: 1366px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: center;
}

.cont-pg .strip-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cont-pg .strip-item .strip-label {
    font-size: 15px;
    color: #84AC97;
    line-height: 1.2;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.cont-pg .strip-item .strip-val {
    font-size: 18px;
    color: #ffffff;
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.15s ease-out;
}

.cont-pg .strip-item a.strip-val:hover {
    color: #E7F2ED;
}

.cont-pg .strip-divider {
    width: 1px;
    height: 60px;
    background-color: rgba(132, 172, 151, 0.4);
    justify-self: center;
}

.cont-pg .img-frm-wrap {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: -1px 5px 25px 0 rgba(56, 120, 110, 0.11);
    transition: box-shadow 0.2s ease-out;
}

.cont-pg .img-frm-wrap:hover {
    box-shadow: -1px 10px 60px 0 rgba(56, 120, 110, 0.14);
}

.cont-pg .img-frm-wrap img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.2s ease-out;
}

.cont-pg .img-frm-wrap:hover img {
    transform: scale(1.04);
}

.cont-pg .img-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(56, 120, 110, 0.35);
    pointer-events: none;
}

.cont-pg .img-overlay-txt {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    font-size: 15px;
    color: #E7F2ED;
    line-height: 1.6;
    pointer-events: none;
}

.cont-pg .dots-deco {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.cont-pg .dots-deco span {
    border-radius: 50%;
    background-color: #84AC97;
    flex-shrink: 0;
}

.cont-pg .dots-deco span:nth-child(1) {
    width: 6px;
    height: 6px;
    opacity: 0.5;
}

.cont-pg .dots-deco span:nth-child(2) {
    width: 10px;
    height: 10px;
    opacity: 0.7;
}

.cont-pg .dots-deco span:nth-child(3) {
    width: 6px;
    height: 6px;
    opacity: 0.4;
}

.cont-pg .dots-deco span:nth-child(4) {
    width: 14px;
    height: 14px;
    opacity: 0.9;
}

.cont-pg .dots-deco span:nth-child(5) {
    width: 8px;
    height: 8px;
    opacity: 0.6;
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.cont-pg .frm-area {
    animation: scaleIn 0.2s ease-out both;
}

.cont-pg .info-strip {
    animation: scaleIn 0.2s ease-out 0.1s both;
}

@media (max-width: 768px) {
    .cont-pg .frm-area {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 16px;
    }

    .cont-pg .frm-aside {
        position: static;
    }

    .cont-pg .aside-decl h1 {
        font-size: 28px;
    }

    .cont-pg .field-row {
        grid-template-columns: 1fr;
    }

    .cont-pg .frm-panel {
        padding: 16px;
    }

    .cont-pg .info-strip-inner {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cont-pg .strip-divider {
        width: 60px;
        height: 1px;
        justify-self: start;
    }

    .cont-pg .info-strip {
        padding: 40px 16px;
    }

    .cont-pg .frm-submit-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .cont-pg .btn-submit {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 375px) {
    .cont-pg .frm-area {
        padding: 40px 8px;
    }

    .cont-pg .channel-opts {
        flex-direction: column;
    }

    .cont-pg .aside-decl h1 {
        font-size: 28px;
    }

    .cont-pg .frm-panel {
        padding: 16px 8px;
    }

    .cont-pg .info-strip {
        padding: 40px 8px;
    }
}

@media (min-width: 1366px) {
    .cont-pg .frm-area {
        padding: 80px 80px;
    }
}

.abt-us {
    overflow-x: clip;
    position: relative;
}

.abt-us *::selection {
    background: rgba(56, 120, 110, 0.1);
}

.abt-us .pg-entry {
    position: relative;
    padding: 80px 40px;
    background: #1a3d38;
    overflow: hidden;
}

.abt-us .pg-entry::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 40%, rgba(132, 172, 151, 0.12) 0%, rgba(19, 48, 43, 0.0) 65%);
    pointer-events: none;
}

.abt-us .grid-tex {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(132, 172, 151, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(132, 172, 151, 0.07) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.abt-us .curl-deco {
    position: absolute;
    bottom: 16px;
    right: 40px;
    width: 90px;
    height: 90px;
    opacity: 0.07;
    pointer-events: none;
}

.abt-us .curl-deco svg {
    width: 100%;
    height: 100%;
}

.abt-us .entry-inner {
    max-width: 1366px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.abt-us .entry-label {
    display: inline-block;
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.08em;
    color: #84AC97;
    text-transform: uppercase;
    font-weight: 600;
}

.abt-us .entry-h1 {
    font-size: 68px;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: #E7F2ED;
    font-weight: 700;
    max-width: 820px;
    margin: 0;
}

.abt-us .entry-h1 .em-span {
    color: #84AC97;
    -webkit-text-fill-color: #84AC97;
}

.abt-us .entry-sub {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(231, 242, 237, 0.72);
    max-width: 560px;
    margin: 0;
}

.abt-us .entry-meta {
    display: flex;
    flex-direction: row;
    gap: 40px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.abt-us .meta-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.abt-us .meta-num {
    font-size: 52px;
    line-height: 1.2;
    letter-spacing: -0.04em;
    color: #E7F2ED;
    font-weight: 700;
}

.abt-us .meta-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #84AC97;
    letter-spacing: 0.04em;
}

.abt-us .diag-div {
    height: 40px;
    background: linear-gradient(170deg, #1a3d38 50%, #ffffff 50%);
    display: block;
}

.abt-us .story-sec {
    background: #ffffff;
    padding: 80px 40px;
    position: relative;
}

.abt-us .story-inner {
    max-width: 1366px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.abt-us .story-col-a {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.abt-us .geo-anchor {
    width: 28px;
    height: 5px;
    background: #38786E;
    border-radius: 1px;
    display: block;
}

.abt-us .story-h2 {
    font-size: 52px;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: #1c2e2b;
    font-weight: 700;
    margin: 0;
}

.abt-us .story-lead {
    font-size: 18px;
    line-height: 1.6;
    color: #2d4a45;
    margin: 0;
}

.abt-us .story-col-b {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 40px;
}

.abt-us .story-para {
    font-size: 15px;
    line-height: 1.6;
    color: #3a4a47;
    margin: 0;
}

.abt-us .story-para .acc {
    color: #38786E;
    font-weight: 600;
}

.abt-us .story-col-c {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 80px;
}

.abt-us .img-wrap {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: -1px 5px 25px 0 rgba(56, 120, 110, 0.11);
    position: relative;
}

.abt-us .img-wrap img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.2s ease-out;
}

.abt-us .img-wrap:hover img {
    transform: scale(1.04);
}

.abt-us .corner-acc {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background: #38786E;
    border-radius: 0 5px 0 34px;
    z-index: 2;
}

.abt-us .info-card {
    border-radius: 5px;
    border: 1px solid rgba(56, 120, 110, 0.18);
    padding: 16px;
    background: #E7F2ED;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: -1px 3px 2px 0 rgba(56, 120, 110, 0.06);
}

.abt-us .info-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
    padding: 8px 0;
    border-bottom: 1px solid rgba(56, 120, 110, 0.12);
}

.abt-us .info-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.abt-us .info-lbl {
    font-size: 15px;
    line-height: 1.6;
    color: #38786E;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.abt-us .info-val {
    font-size: 15px;
    line-height: 1.6;
    color: #1c2e2b;
    font-weight: 500;
    text-align: right;
}

.abt-us .div-slant {
    height: 40px;
    background: linear-gradient(168deg, #ffffff 49%, #E7F2ED 49%);
    display: block;
}

.abt-us .team-sec {
    background: #E7F2ED;
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}

.abt-us .team-sec .curl-deco-b {
    position: absolute;
    top: 16px;
    left: 40px;
    width: 110px;
    height: 110px;
    opacity: 0.09;
    pointer-events: none;
}

.abt-us .team-inner {
    max-width: 1366px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.abt-us .team-hd {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.abt-us .geo-diamond {
    width: 16px;
    height: 16px;
    background: #38786E;
    transform: rotate(45deg);
    border-radius: 1px;
    display: block;
}

.abt-us .team-h2 {
    font-size: 52px;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: #1c2e2b;
    font-weight: 700;
    margin: 0;
    text-align: center;
}

.abt-us .team-sub {
    font-size: 18px;
    line-height: 1.6;
    color: #2d4a45;
    max-width: 560px;
    text-align: left;
    margin: 0;
}

.abt-us .team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-items: end;
}

.abt-us .person-card {
    background: #ffffff;
    border-radius: 5px;
    box-shadow: -1px 5px 25px 0 rgba(56, 120, 110, 0.11);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.15s ease-out;
    position: relative;
}

.abt-us .person-card:hover {
    box-shadow: -1px 10px 60px 0 rgba(56, 120, 110, 0.14);
}

.abt-us .person-card.tall {
    margin-bottom: 40px;
}

.abt-us .person-card.mid {
    margin-bottom: 16px;
}

.abt-us .person-card.short {
    margin-bottom: 0;
}

.abt-us .card-img-wrap {
    overflow: hidden;
    position: relative;
}

.abt-us .card-img-wrap img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.18s ease-out;
}

.abt-us .person-card:hover .card-img-wrap img {
    transform: scale(1.05);
}

.abt-us .card-corner {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 40px;
    background: #84AC97;
    border-radius: 0 34px 0 5px;
    z-index: 2;
}

.abt-us .card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.abt-us .card-name {
    font-size: 18px;
    line-height: 1.6;
    color: #1c2e2b;
    font-weight: 700;
    margin: 0;
}

.abt-us .card-role {
    font-size: 15px;
    line-height: 1.6;
    color: #38786E;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin: 0;
}

.abt-us .card-bio {
    font-size: 15px;
    line-height: 1.6;
    color: #3a4a47;
    margin: 0;
}

.abt-us .cert-strip {
    background: #38786E;
    border-radius: 5px;
    padding: 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
    text-decoration: none;
    transition: background 0.15s ease-out;
    box-shadow: -1px 3px 2px 0 rgba(56, 120, 110, 0.06);
}

.abt-us .cert-strip:hover {
    background: #2a5c53;
}

.abt-us .cert-strip:focus {
    outline: 2px solid #1c2e2b;
    outline-offset: 2px;
}

.abt-us .cert-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: rgba(231, 242, 237, 0.15);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.abt-us .cert-icon svg {
    width: 24px;
    height: 24px;
}

.abt-us .cert-txt {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.abt-us .cert-lbl {
    font-size: 15px;
    line-height: 1.6;
    color: #E7F2ED;
    font-weight: 700;
}

.abt-us .cert-hint {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(231, 242, 237, 0.72);
}

.abt-us .cert-arr {
    margin-left: auto;
    flex-shrink: 0;
}

.abt-us .cert-arr svg {
    width: 20px;
    height: 20px;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(48px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.abt-us .entry-inner .entry-label {
    animation: slideInRight 0.18s ease-out both;
    animation-delay: 0.05s;
}

.abt-us .entry-inner .entry-h1 {
    animation: slideInRight 0.2s ease-out both;
    animation-delay: 0.1s;
}

.abt-us .entry-inner .entry-sub {
    animation: slideInRight 0.18s ease-out both;
    animation-delay: 0.15s;
}

.abt-us .entry-inner .entry-meta {
    animation: slideInRight 0.18s ease-out both;
    animation-delay: 0.2s;
}

@media (max-width: 1366px) {
    .abt-us .entry-h1 {
        font-size: 52px;
    }
}

@media (max-width: 768px) {
    .abt-us .pg-entry {
        padding: 80px 16px;
    }

    .abt-us .entry-h1 {
        font-size: 28px;
    }

    .abt-us .meta-num {
        font-size: 28px;
    }

    .abt-us .entry-meta {
        gap: 16px;
    }

    .abt-us .story-sec {
        padding: 80px 16px;
    }

    .abt-us .story-inner {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .abt-us .story-col-b,
    .abt-us .story-col-c {
        padding-top: 0;
    }

    .abt-us .story-h2 {
        font-size: 28px;
    }

    .abt-us .team-sec {
        padding: 80px 16px;
    }

    .abt-us .team-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .abt-us .person-card.tall,
    .abt-us .person-card.mid {
        margin-bottom: 0;
    }

    .abt-us .team-h2 {
        font-size: 28px;
    }
}

@media (max-width: 375px) {
    .abt-us .pg-entry {
        padding: 40px 16px;
    }

    .abt-us .entry-h1 {
        font-size: 28px;
    }

    .abt-us .entry-sub {
        font-size: 15px;
    }

    .abt-us .story-sec {
        padding: 40px 16px;
    }

    .abt-us .team-sec {
        padding: 40px 16px;
    }

    .abt-us .curl-deco,
    .abt-us .team-sec .curl-deco-b {
        display: none;
    }
}

.lrn-prog {
    background: #fff;
    overflow-x: hidden;
}

.lrn-prog .pg-band {
    width: 100%;
    background: #38786E;
    position: relative;
    overflow: hidden;
}

.lrn-prog .pg-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(63deg,
            transparent,
            transparent 18px,
            rgba(255, 255, 255, 0.04) 18px,
            rgba(255, 255, 255, 0.04) 20px);
    pointer-events: none;
}

.lrn-prog .band-inner {
    max-width: 1366px;
    margin: 0 auto;
    padding: 40px 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.lrn-prog .band-img-col {
    flex: 0 0 220px;
    height: 160px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: -1px 5px 25px 0 rgba(56, 120, 110, 0.11);
    position: relative;
}

.lrn-prog .band-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(15%) contrast(1.05);
    transition: transform 0.18s ease-out;
}

.lrn-prog .band-img-col:hover img {
    transform: scale(1.06) translateX(4px);
}

.lrn-prog .band-txt {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lrn-prog .band-label {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(231, 242, 237, 0.75);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lrn-prog .band-h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #E7F2ED;
    letter-spacing: -0.02em;
    margin: 0;
}

.lrn-prog .band-h1 span {
    color: #84AC97;
}

.lrn-prog .band-sub {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(231, 242, 237, 0.85);
    max-width: 540px;
    margin: 0;
}

.lrn-prog .band-dec {
    flex: 0 0 180px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}

.lrn-prog .band-stat {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(132, 172, 151, 0.3);
    border-radius: 5px;
    padding: 16px;
    text-align: right;
    width: 100%;
}

.lrn-prog .band-stat-num {
    font-size: 28px;
    line-height: 1.2;
    color: #E7F2ED;
    display: block;
}

.lrn-prog .band-stat-lbl {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(231, 242, 237, 0.65);
}

.lrn-prog .divider-blur {
    width: 100%;
    height: 48px;
    background: linear-gradient(to bottom, #38786E 0%, #E7F2ED 100%);
    filter: blur(8px);
    margin-top: -16px;
    pointer-events: none;
}

.lrn-prog .prog-grid-sect {
    background: #E7F2ED;
    padding: 80px 40px;
    position: relative;
}

.lrn-prog .prog-grid-sect::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #84AC97, transparent);
}

.lrn-prog .grid-head {
    max-width: 1366px;
    margin: 0 auto 40px;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.lrn-prog .grid-head-txt {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lrn-prog .geo-mark {
    width: 28px;
    height: 4px;
    background: #38786E;
    border-radius: 1px;
    margin-bottom: 8px;
}

.lrn-prog .grid-h2 {
    font-size: 28px;
    line-height: 1.2;
    color: #1b3d38;
    margin: 0;
    letter-spacing: -0.01em;
}

.lrn-prog .grid-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #2e5a52;
    max-width: 420px;
    margin: 0;
}

.lrn-prog .grid-count {
    font-size: 52px;
    line-height: 1.2;
    color: #38786E;
    opacity: 0.18;
    letter-spacing: -0.03em;
    user-select: none;
}

.lrn-prog .prog-cards {
    max-width: 1366px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.lrn-prog .prog-card {
    background: #fff;
    border-radius: 5px;
    box-shadow: -1px 5px 25px 0 rgba(56, 120, 110, 0.11);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: box-shadow 0.18s ease-out;
}

.lrn-prog .prog-card:hover {
    box-shadow: -1px 10px 60px 0 rgba(56, 120, 110, 0.14);
}

.lrn-prog .card-img-wrap {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.lrn-prog .card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.2s ease-out;
}

.lrn-prog .prog-card:hover .card-img-wrap img {
    transform: scale(1.06);
}

.lrn-prog .card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.lrn-prog .card-title {
    font-size: 18px;
    line-height: 1.2;
    color: #1b3d38;
    margin: 0;
    letter-spacing: -0.01em;
}

.lrn-prog .card-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #2e5a52;
    margin: 0;
    flex: 1;
}

.lrn-prog .card-price {
    font-size: 18px;
    line-height: 1.2;
    color: #38786E;
    font-weight: 600;
    display: block;
}

.lrn-prog .card-link {
    display: inline-block;
    background: #38786E;
    color: #E7F2ED;
    font-size: 15px;
    line-height: 1.6;
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 8px;
    align-self: flex-start;
    transition: background 0.15s ease-out, color 0.15s ease-out;
}

.lrn-prog .card-link:hover {
    background: #2a5e55;
    color: #fff;
}

.lrn-prog .how-sect {
    background: #fff;
    padding: 80px 40px;
    position: relative;
}

.lrn-prog .how-inner {
    max-width: 1366px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 80px;
    align-items: flex-start;
}

.lrn-prog .how-txt-col {
    flex: 0 0 380px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lrn-prog .how-h2 {
    font-size: 28px;
    line-height: 1.2;
    color: #1b3d38;
    margin: 0;
    letter-spacing: -0.01em;
}

.lrn-prog .how-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #2e5a52;
    margin: 0;
}

.lrn-prog .how-steps {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lrn-prog .how-step {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    border-radius: 5px;
    border: 1px solid #E7F2ED;
    transition: border-color 0.15s ease-out, box-shadow 0.15s ease-out;
}

.lrn-prog .how-step:hover {
    border-color: #84AC97;
    box-shadow: -1px 3px 2px 0 rgba(56, 120, 110, 0.06);
}

.lrn-prog .step-num {
    flex: 0 0 40px;
    height: 40px;
    background: #38786E;
    color: #E7F2ED;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    box-shadow: -1px 3px 2px 0 rgba(56, 120, 110, 0.06);
    flex-shrink: 0;
}

.lrn-prog .step-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lrn-prog .step-h {
    font-size: 15px;
    line-height: 1.6;
    color: #1b3d38;
    margin: 0;
    font-weight: 600;
}

.lrn-prog .step-p {
    font-size: 15px;
    line-height: 1.6;
    color: #2e5a52;
    margin: 0;
}

.lrn-prog .divider-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, #84AC97 40%, #84AC97 60%, transparent);
}

.lrn-prog .faq-sect {
    background: #38786E;
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}

.lrn-prog .faq-sect::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 28px, rgba(231, 242, 237, 0.05) 28px, rgba(231, 242, 237, 0.05) 29px),
        repeating-linear-gradient(90deg, transparent, transparent 28px, rgba(231, 242, 237, 0.05) 28px, rgba(231, 242, 237, 0.05) 29px);
    pointer-events: none;
}

.lrn-prog .faq-inner {
    max-width: 1366px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.lrn-prog .faq-head {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.lrn-prog .faq-h2 {
    font-size: 28px;
    line-height: 1.2;
    color: #E7F2ED;
    margin: 0;
    letter-spacing: -0.01em;
}

.lrn-prog .faq-sub {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(231, 242, 237, 0.75);
    max-width: 480px;
    text-align: left;
    margin: 0;
}

.lrn-prog .faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 820px;
    margin: 0 auto;
}

.lrn-prog .faq-item {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(132, 172, 151, 0.25);
    border-radius: 5px;
    overflow: hidden;
}

.lrn-prog .faq-item summary {
    font-size: 15px;
    line-height: 1.6;
    color: #E7F2ED;
    padding: 16px;
    cursor: pointer;
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: background 0.15s ease-out;
}

.lrn-prog .faq-item summary:hover {
    background: rgba(255, 255, 255, 0.05);
}

.lrn-prog .faq-item summary::-webkit-details-marker {
    display: none;
}

.lrn-prog .faq-arrow {
    width: 18px;
    height: 18px;
    border: 2px solid #84AC97;
    border-radius: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.lrn-prog .faq-arrow::after {
    content: '';
    width: 6px;
    height: 6px;
    border-right: 2px solid #84AC97;
    border-bottom: 2px solid #84AC97;
    transform: rotate(45deg);
    margin-top: -3px;
}

.lrn-prog .faq-item[open] .faq-arrow::after {
    transform: rotate(-135deg);
    margin-top: 3px;
}

.lrn-prog .faq-ans {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(231, 242, 237, 0.8);
    padding: 0 16px 16px;
    margin: 0;
}

.lrn-prog .activity-sect {
    background: #fff;
    padding: 80px 40px;
}

.lrn-prog .act-inner {
    max-width: 1366px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 80px;
    align-items: flex-start;
}

.lrn-prog .act-col-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lrn-prog .act-h2 {
    font-size: 28px;
    line-height: 1.2;
    color: #1b3d38;
    margin: 0;
    letter-spacing: -0.01em;
}

.lrn-prog .act-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #2e5a52;
    margin: 0;
    max-width: 440px;
}

.lrn-prog .act-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lrn-prog .act-checklist li {
    font-size: 15px;
    line-height: 1.6;
    color: #2e5a52;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
}

.lrn-prog .act-checklist li::before {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid #38786E;
    border-radius: 1px;
    flex-shrink: 0;
    margin-top: 3px;
    position: relative;
    background: linear-gradient(135deg, #E7F2ED 60%, #84AC97 100%);
}

.lrn-prog .act-col-right {
    flex: 0 0 420px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lrn-prog .act-feed-h {
    font-size: 15px;
    line-height: 1.6;
    color: #2e5a52;
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.lrn-prog .feed-entry {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    border-radius: 5px;
    background: #E7F2ED;
    box-shadow: -1px 3px 2px 0 rgba(56, 120, 110, 0.06);
    transition: box-shadow 0.18s ease-out;
}

.lrn-prog .feed-entry:hover {
    box-shadow: -1px 5px 25px 0 rgba(56, 120, 110, 0.11);
}

.lrn-prog .feed-icon {
    width: 36px;
    height: 36px;
    background: #38786E;
    border-radius: 5px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: -1px 3px 2px 0 rgba(56, 120, 110, 0.06);
}

.lrn-prog .feed-icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #E7F2ED;
    stroke-width: 2;
}

.lrn-prog .feed-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lrn-prog .feed-txt {
    font-size: 15px;
    line-height: 1.6;
    color: #1b3d38;
    margin: 0;
}

.lrn-prog .feed-time {
    font-size: 15px;
    line-height: 1.2;
    color: #84AC97;
}

.lrn-prog .accent-span {
    color: #84AC97;
}

@media (max-width: 1366px) {
    .lrn-prog .prog-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .lrn-prog .band-dec {
        display: none;
    }
}

@media (max-width: 768px) {
    .lrn-prog .band-inner {
        flex-direction: column;
        padding: 40px 16px;
    }

    .lrn-prog .band-img-col {
        flex: 0 0 auto;
        width: 100%;
        height: 160px;
    }

    .lrn-prog .band-h1 {
        font-size: 28px;
    }

    .lrn-prog .prog-grid-sect {
        padding: 40px 16px;
    }

    .lrn-prog .prog-cards {
        grid-template-columns: 1fr;
    }

    .lrn-prog .grid-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .lrn-prog .grid-count {
        display: none;
    }

    .lrn-prog .how-sect {
        padding: 40px 16px;
    }

    .lrn-prog .how-inner {
        flex-direction: column;
        gap: 40px;
    }

    .lrn-prog .how-txt-col {
        flex: 0 0 auto;
    }

    .lrn-prog .faq-sect {
        padding: 40px 16px;
    }

    .lrn-prog .activity-sect {
        padding: 40px 16px;
    }

    .lrn-prog .act-inner {
        flex-direction: column;
        gap: 40px;
    }

    .lrn-prog .act-col-right {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (max-width: 375px) {
    .lrn-prog .band-h1 {
        font-size: 28px;
    }

    .lrn-prog .prog-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .lrn-prog .band-inner {
        padding: 40px 8px;
    }

    .lrn-prog .prog-grid-sect {
        padding: 40px 8px;
    }

    .lrn-prog .how-sect {
        padding: 40px 8px;
    }

    .lrn-prog .faq-sect {
        padding: 40px 8px;
    }

    .lrn-prog .activity-sect {
        padding: 40px 8px;
    }
}

.lrn-prog .reveal-right {
    opacity: 0;
    transform: translateX(48px);
    animation: slideFromRight 0.2s ease-out forwards;
}

.lrn-prog .reveal-right:nth-child(1) {
    animation-delay: 0.05s;
}

.lrn-prog .reveal-right:nth-child(2) {
    animation-delay: 0.1s;
}

.lrn-prog .reveal-right:nth-child(3) {
    animation-delay: 0.15s;
}

.lrn-prog .reveal-right:nth-child(4) {
    animation-delay: 0.2s;
}

.lrn-prog .reveal-right:nth-child(5) {
    animation-delay: 0.25s;
}

@keyframes slideFromRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.qz_pg {
    max-width: 1366px;
    margin: 0 auto;
    overflow: hidden;
}

.qz_pg .lead_area {
    position: relative;
    padding: 80px 40px;
    background: #fff;
    text-align: center;
}

.qz_pg .lead_area .blob_a {
    position: absolute;
    top: -40px;
    left: 8%;
    width: 320px;
    height: 320px;
    background: #E7F2ED;
    border-radius: 34px;
    filter: blur(60px);
    opacity: 0.7;
    pointer-events: none;
    z-index: 0;
}

.qz_pg .lead_area .blob_b {
    position: absolute;
    bottom: -40px;
    right: 6%;
    width: 280px;
    height: 280px;
    background: #84AC97;
    border-radius: 34px;
    filter: blur(80px);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

.qz_pg .lead_area .lead_inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}

.qz_pg .lead_area .lead_inner h1 {
    font-size: 52px;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: #1b2e2b;
    margin-bottom: 16px;
}

.qz_pg .lead_area .lead_inner h1 .shape_pfx {
    display: inline-block;
    width: 14px;
    height: 14px;
    background: #38786E;
    border-radius: 1px;
    margin-right: 16px;
    vertical-align: middle;
    transform: rotate(45deg);
}

.qz_pg .lead_area .lead_inner .lead_desc {
    font-size: 18px;
    line-height: 1.6;
    color: #3a4a47;
    margin-bottom: 40px;
    text-align: left;
}

.qz_pg .lead_area .lead_actions {
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.qz_pg .lead_area .lead_actions .btn_prim {
    display: inline-block;
    padding: 16px 40px;
    background: #38786E;
    color: #fff;
    font-size: 18px;
    line-height: 1.2;
    border-radius: 5px;
    text-decoration: none;
    box-shadow: -1px 5px 25px 0 rgba(56, 120, 110, 0.11);
    transition: background 0.15s ease-out, box-shadow 0.2s ease;
}

.qz_pg .lead_area .lead_actions .btn_prim:hover {
    background: #2e6560;
    box-shadow: -1px 10px 60px 0 rgba(56, 120, 110, 0.14);
}

.qz_pg .lead_area .lead_actions .btn_sec {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: #38786E;
    font-size: 15px;
    line-height: 1.2;
    border-radius: 5px;
    border: 1.5px solid #84AC97;
    text-decoration: none;
    transition: background 0.15s ease-out, color 0.15s ease-out;
}

.qz_pg .lead_area .lead_actions .btn_sec:hover {
    background: #E7F2ED;
    color: #2e6560;
}

.qz_pg .lead_img_wrap {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: -1px 10px 60px 0 rgba(56, 120, 110, 0.14);
}

.qz_pg .lead_img_wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.2s ease-out;
    animation: img_wipe 0.7s ease-out both;
}

.qz_pg .lead_img_wrap:hover img {
    transform: scale(1.03);
}

.qz_pg .lead_img_wrap .img_grad {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 40%, #fff 100%);
    pointer-events: none;
}

@keyframes img_wipe {
    from {
        clip-path: inset(0 100% 0 0);
    }

    to {
        clip-path: inset(0 0% 0 0);
    }
}

.qz_pg .quiz_area {
    padding: 80px 40px;
    background: #E7F2ED;
}

.qz_pg .quiz_area .qa_head {
    max-width: 680px;
    margin: 0 auto 40px;
    text-align: center;
}

.qz_pg .quiz_area .qa_head h2 {
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: #1b2e2b;
    margin-bottom: 16px;
}

.qz_pg .quiz_area .qa_head h2::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #84AC97;
    border-radius: 1px;
    margin-right: 8px;
    vertical-align: middle;
}

.qz_pg .quiz_area .qa_head p {
    font-size: 15px;
    line-height: 1.6;
    color: #3a4a47;
    text-align: left;
}

.qz_pg .quiz_area .progress_bar_wrap {
    max-width: 680px;
    margin: 0 auto 40px;
}

.qz_pg .quiz_area .prog_label {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 15px;
    color: #38786E;
    margin-bottom: 8px;
}

.qz_pg .quiz_area .prog_track {
    height: 8px;
    background: #fff;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: inset -1px 3px 2px 0 rgba(56, 120, 110, 0.06), inset -1px 5px 25px 0 rgba(56, 120, 110, 0.04);
}

.qz_pg .quiz_area .prog_fill {
    height: 100%;
    background: #38786E;
    border-radius: 34px;
    transition: width 0.2s ease-out;
}

.qz_pg .quiz_area .q_cards {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.qz_pg .quiz_area .q_card {
    background: #fff;
    border-radius: 5px;
    padding: 40px;
    box-shadow: -1px 5px 25px 0 rgba(56, 120, 110, 0.11);
}

.qz_pg .quiz_area .q_card .q_num {
    font-size: 52px;
    line-height: 1.2;
    color: #E7F2ED;
    font-weight: 700;
    letter-spacing: -0.04em;
    float: left;
    margin-right: 16px;
    margin-top: -8px;
    line-height: 1;
}

.qz_pg .quiz_area .q_card .q_text {
    font-size: 18px;
    line-height: 1.6;
    color: #1b2e2b;
    font-weight: 600;
    margin-bottom: 16px;
    overflow: hidden;
}

.qz_pg .quiz_area .q_card .q_opts {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

.qz_pg .quiz_area .q_card .q_opt {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    padding: 8px;
    border-radius: 5px;
    transition: background 0.15s ease-out;
}

.qz_pg .quiz_area .q_card .q_opt:hover {
    background: #E7F2ED;
}

.qz_pg .quiz_area .q_card .q_opt input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 2px solid #84AC97;
    border-radius: 34px;
    margin-top: 2px;
    cursor: pointer;
    transition: border-color 0.15s ease-out, background 0.15s ease-out;
}

.qz_pg .quiz_area .q_card .q_opt input[type="radio"]:checked {
    background: #38786E;
    border-color: #38786E;
    box-shadow: inset 0 0 0 3px #fff;
}

.qz_pg .quiz_area .q_card .q_opt label {
    font-size: 15px;
    line-height: 1.6;
    color: #2d3d3a;
    cursor: pointer;
}

.qz_pg .quiz_area .q_submit {
    max-width: 680px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.qz_pg .quiz_area .q_submit button {
    padding: 16px 40px;
    background: #38786E;
    color: #fff;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: -1px 5px 25px 0 rgba(56, 120, 110, 0.11);
    transition: background 0.15s ease-out, transform 0.1s ease;
}

.qz_pg .quiz_area .q_submit button:hover {
    background: #2e6560;
}

.qz_pg .quiz_area .q_submit button:active {
    transform: scale(0.98);
    background: #84AC97;
}

.qz_pg .quiz_area .q_result {
    max-width: 680px;
    margin: 40px auto 0;
    background: #fff;
    border-radius: 5px;
    padding: 40px;
    box-shadow: -1px 5px 25px 0 rgba(56, 120, 110, 0.11);
    display: none;
    text-align: center;
}

.qz_pg .quiz_area .q_result.visible {
    display: block;
}

.qz_pg .quiz_area .q_result .res_score {
    font-size: 68px;
    line-height: 1.2;
    color: #38786E;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.qz_pg .quiz_area .q_result .res_label {
    font-size: 18px;
    line-height: 1.6;
    color: #1b2e2b;
    margin-bottom: 16px;
}

.qz_pg .quiz_area .q_result .res_note {
    font-size: 15px;
    line-height: 1.6;
    color: #3a4a47;
    text-align: left;
}

.qz_pg .quiz_area .q_result .res_retry {
    display: inline-block;
    margin-top: 16px;
    padding: 8px 40px;
    background: transparent;
    color: #38786E;
    border: 1.5px solid #84AC97;
    border-radius: 5px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.15s ease-out;
}

.qz_pg .quiz_area .q_result .res_retry:hover {
    background: #E7F2ED;
}

.qz_pg .info_area {
    padding: 80px 40px;
    background: #fff;
}

.qz_pg .info_area .info_split {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.qz_pg .info_area .info_left h2 {
    font-size: 28px;
    line-height: 1.2;
    color: #1b2e2b;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
}

.qz_pg .info_area .info_left h2 .shape_tri {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 14px solid #38786E;
    margin-right: 8px;
    vertical-align: middle;
}

.qz_pg .info_area .info_left .info_desc {
    font-size: 15px;
    line-height: 1.6;
    color: #3a4a47;
    margin-bottom: 16px;
}

.qz_pg .info_area .info_left .info_desc .accent {
    color: #84AC97;
}

.qz_pg .info_area .info_right .tips_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.qz_pg .info_area .info_right .tips_list li {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    background: #E7F2ED;
    border-radius: 5px;
    box-shadow: -1px 3px 2px 0 rgba(56, 120, 110, 0.06);
    transition: box-shadow 0.2s ease-out;
}

.qz_pg .info_area .info_right .tips_list li:hover {
    box-shadow: -1px 5px 25px 0 rgba(56, 120, 110, 0.11);
}

.qz_pg .info_area .info_right .tips_list .tip_num {
    font-size: 28px;
    line-height: 1.2;
    color: #38786E;
    font-weight: 700;
    letter-spacing: -0.03em;
    min-width: 40px;
}

.qz_pg .info_area .info_right .tips_list .tip_body h4 {
    font-size: 15px;
    line-height: 1.6;
    color: #1b2e2b;
    font-weight: 600;
    margin-bottom: 8px;
}

.qz_pg .info_area .info_right .tips_list .tip_body p {
    font-size: 15px;
    line-height: 1.6;
    color: #3a4a47;
}

.qz_pg .blockquote_strip {
    max-width: 860px;
    margin: 40px auto 0;
    padding: 40px;
    position: relative;
}

.qz_pg .blockquote_strip .q_mark {
    position: absolute;
    top: 0;
    left: 40px;
    font-size: 120px;
    line-height: 1;
    color: #E7F2ED;
    font-weight: 700;
    pointer-events: none;
    z-index: 0;
    letter-spacing: -0.05em;
}

.qz_pg .blockquote_strip blockquote {
    position: relative;
    z-index: 1;
    font-size: 18px;
    line-height: 2.0;
    color: #2d3d3a;
    font-style: italic;
    margin: 0;
    padding-left: 40px;
}

.qz_pg .blockquote_strip .bq_attr {
    font-size: 15px;
    line-height: 1.6;
    color: #84AC97;
    font-style: normal;
    padding-left: 40px;
    margin-top: 8px;
    display: block;
}

@media (max-width: 768px) {
    .qz_pg .lead_area {
        padding: 40px 16px;
    }

    .qz_pg .lead_area .lead_inner h1 {
        font-size: 28px;
    }

    .qz_pg .lead_area .lead_actions {
        flex-direction: column;
        align-items: stretch;
    }

    .qz_pg .lead_area .lead_actions .btn_prim,
    .qz_pg .lead_area .lead_actions .btn_sec {
        text-align: center;
    }

    .qz_pg .lead_img_wrap img {
        height: 220px;
    }

    .qz_pg .quiz_area {
        padding: 40px 16px;
    }

    .qz_pg .quiz_area .q_card {
        padding: 16px;
    }

    .qz_pg .quiz_area .q_card .q_num {
        font-size: 28px;
    }

    .qz_pg .quiz_area .q_result {
        padding: 16px;
    }

    .qz_pg .info_area {
        padding: 40px 16px;
    }

    .qz_pg .info_area .info_split {
        grid-template-columns: 1fr;
    }

    .qz_pg .blockquote_strip {
        padding: 40px 16px;
    }

    .qz_pg .blockquote_strip blockquote {
        padding-left: 16px;
    }

    .qz_pg .blockquote_strip .bq_attr {
        padding-left: 16px;
    }
}

@media (max-width: 375px) {
    .qz_pg .lead_area .lead_inner h1 {
        font-size: 28px;
    }

    .qz_pg .quiz_area .q_result .res_score {
        font-size: 52px;
    }
}

.success_page {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 16px;
    background: #ffffff;
}

.success_page .confirm_wrap {
    max-width: 560px;
    width: 100%;
    text-align: center;
}

.success_page .icon_ring {
    width: 72px;
    height: 72px;
    border-radius: 34px;
    background: #E7F2ED;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
    box-shadow: -1px 5px 25px 0 rgba(56, 120, 110, 0.11);
}

.success_page .icon_ring svg {
    display: block;
}

.success_page .confirm_heading {
    font-size: 52px;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: #1b3d38;
    margin: 0 0 16px;
}

.success_page .confirm_sub {
    font-size: 18px;
    line-height: 1.6;
    color: #3d5c56;
    margin: 0 0 40px;
    padding: 0 8px;
}

.success_page .confirm_sub span {
    color: #38786E;
}

.success_page .divider_line {
    width: 48px;
    height: 2px;
    background: #84AC97;
    border-radius: 1px;
    margin: 0 auto 40px;
}

.success_page .detail_block {
    background: #E7F2ED;
    border-radius: 5px;
    padding: 40px;
    margin: 0 0 40px;
    text-align: left;
    box-shadow: -1px 3px 2px 0 rgba(56, 120, 110, 0.06);
}

.success_page .detail_block .detail_label {
    font-size: 15px;
    line-height: 2.0;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #38786E;
    margin: 0 0 8px;
    display: block;
}

.success_page .detail_block .detail_text {
    font-size: 15px;
    line-height: 1.6;
    color: #2a4a44;
    margin: 0;
}

.success_page .action_row {
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.success_page .btn_primary {
    display: inline-block;
    padding: 16px 40px;
    background: #38786E;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.2;
    border-radius: 5px;
    text-decoration: none;
    border: 2px solid #38786E;
    transition: background-color 0.15s ease-out, border-color 0.15s ease-out;
    box-shadow: -1px 5px 25px 0 rgba(56, 120, 110, 0.11);
}

.success_page .btn_primary:hover {
    background: #2c6058;
    border-color: #2c6058;
}

.success_page .btn_primary:focus-visible {
    outline: 3px solid #84AC97;
    outline-offset: 3px;
}

.success_page .btn_secondary {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: #38786E;
    font-size: 15px;
    line-height: 1.2;
    border-radius: 5px;
    text-decoration: none;
    border: 2px solid #84AC97;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.success_page .btn_secondary:hover {
    background: #E7F2ED;
    color: #2c6058;
}

.success_page .btn_secondary:focus-visible {
    outline: 3px solid #84AC97;
    outline-offset: 3px;
}

@media (max-width: 768px) {
    .success_page {
        padding: 80px 16px;
    }

    .success_page .confirm_heading {
        font-size: 28px;
    }

    .success_page .detail_block {
        padding: 16px;
    }

    .success_page .action_row {
        flex-direction: column;
        align-items: center;
    }

    .success_page .btn_primary,
    .success_page .btn_secondary {
        width: 100%;
        text-align: center;
        padding: 16px;
    }
}

@media (max-width: 375px) {
    .success_page .confirm_heading {
        font-size: 28px;
    }

    .success_page .confirm_sub {
        font-size: 15px;
    }
}

.not_found_page {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 16px;
    background: #fff;
    overflow: hidden;
}

.not_found_page .error_wrap {
    max-width: 1366px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.not_found_page .error_code_block {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.not_found_page .error_code_block .bg_numeral {
    font-size: 68px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: -0.04em;
    background: linear-gradient(160deg, #E7F2ED 30%, #84AC97 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    user-select: none;
    pointer-events: none;
}

.not_found_page .error_code_block .divider_shape {
    width: 5px;
    height: 56px;
    background: #84AC97;
    border-radius: 1px;
    margin: 0 16px;
    flex-shrink: 0;
}

.not_found_page .error_label {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.not_found_page .error_label .label_main {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
    color: #1b3530;
    letter-spacing: -0.02em;
}

.not_found_page .error_label .label_sub {
    font-size: 15px;
    line-height: 1.6;
    color: #3d5c55;
    letter-spacing: 0.01em;
}

.not_found_page .error_desc {
    max-width: 520px;
    text-align: center;
}

.not_found_page .error_desc p {
    font-size: 18px;
    line-height: 1.6;
    color: #2c4a44;
    letter-spacing: 0.005em;
}

.not_found_page .error_desc p span {
    color: #84AC97;
    font-weight: 600;
}

.not_found_page .nav_links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: center;
}

.not_found_page .nav_links .link_primary {
    display: inline-block;
    padding: 16px 40px;
    background: #38786E;
    color: #fff;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.01em;
    border-radius: 5px;
    text-decoration: none;
    box-shadow: -1px 5px 25px 0 rgba(56, 120, 110, 0.11);
    transition: background-color 0.15s ease-out, box-shadow 0.2s ease;
    border: 2px solid transparent;
}

.not_found_page .nav_links .link_primary:hover {
    background: #2d6158;
    box-shadow: -1px 10px 60px 0 rgba(56, 120, 110, 0.14);
}

.not_found_page .nav_links .link_primary:focus-visible {
    outline: 2px solid #38786E;
    outline-offset: 4px;
}

.not_found_page .nav_links .link_secondary {
    display: inline-block;
    padding: 16px 16px;
    background: transparent;
    color: #38786E;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 0.01em;
    border-radius: 5px;
    text-decoration: none;
    border: 2px solid #84AC97;
    transition: border-color 0.15s ease, color 0.15s ease, background-color 0.2s ease-out;
}

.not_found_page .nav_links .link_secondary:hover {
    background: #E7F2ED;
    border-color: #38786E;
    color: #2d6158;
}

.not_found_page .nav_links .link_secondary:focus-visible {
    outline: 2px solid #38786E;
    outline-offset: 4px;
}

.not_found_page .deco_strip {
    width: 100%;
    max-width: 320px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #84AC97, transparent);
}

.not_found_page .contact_hint {
    font-size: 15px;
    line-height: 1.6;
    color: #3d5c55;
    text-align: center;
    letter-spacing: 0.01em;
}

.not_found_page .contact_hint a {
    color: #38786E;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.12s ease-out;
}

.not_found_page .contact_hint a:hover {
    color: #2d6158;
}

@media (max-width: 768px) {
    .not_found_page {
        padding: 80px 16px;
    }

    .not_found_page .error_code_block .bg_numeral {
        font-size: 52px;
    }

    .not_found_page .error_code_block .divider_shape {
        height: 40px;
    }

    .not_found_page .error_label .label_main {
        font-size: 18px;
    }

    .not_found_page .nav_links {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }

    .not_found_page .nav_links .link_primary,
    .not_found_page .nav_links .link_secondary {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 375px) {
    .not_found_page .error_code_block {
        flex-direction: column;
        gap: 8px;
    }

    .not_found_page .error_code_block .divider_shape {
        width: 40px;
        height: 5px;
        margin: 0;
    }

    .not_found_page .error_label {
        align-items: center;
        text-align: center;
    }
}