@import "https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap";

*,
::before,
::after {
    box-sizing: border-box
}

html {
    scroll-behavior: auto
}

body {
    margin: 0;
    padding: 0;
    scrollbar-gutter: stable;
    min-height: 100vh;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #FFF;
    color: #1b1b1b;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400
}

:focus-visible {
    outline: 2px solid #E52D3E;
    outline-offset: 4px
}

header {
    position: relative;
    background: linear-gradient(135deg, #FCF9EF 0%, #FFF 100%);
    border-bottom: 1px solid #e52d3e1f;
    padding: 32px 48px;
    overflow: hidden
}

header::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -180px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle at center, #e52d3e14 0%, #e52d3e05 50%, transparent 100%);
    border-radius: 46px;
    transform: rotate(-12deg);
    pointer-events: none
}

header::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -100px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle at center, #18553c0f 0%, #18553c04 60%, transparent 100%);
    border-radius: 46px;
    transform: rotate(25deg);
    pointer-events: none
}

.header_frame {
    max-width: 1366px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    position: relative;
    z-index: 2
}

.brand_box {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-shrink: 0
}

.logo_card {
    background: #FFF;
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0 4px 18px 0 #e52d3e17;
    border: 1px solid #18553c14;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow .5s cubic-bezier(0.22, 1, 0.36, 1), transform .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.logo_card:hover {
    box-shadow: 0 9px 36px 0 #e52d3e1c;
    transform: translateY(-2px)
}

.logo_img {
    width: 62px;
    height: 62px;
    object-fit: contain;
    display: block
}

.brand_divider {
    width: 2px;
    height: 58px;
    background: linear-gradient(180deg, transparent 0%, #e52d3e33 50%, transparent 100%)
}

.brand_text {
    font-size: 23px;
    font-weight: 700;
    color: #18553C;
    line-height: 1.2;
    letter-spacing: -.02em
}

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

.nav_link {
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 400;
    color: #2a2a2a;
    text-decoration: none;
    border-radius: 30px;
    transition: background-color .55s cubic-bezier(0.22, 1, 0.36, 1), color .55s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .55s cubic-bezier(0.22, 1, 0.36, 1);
    white-space: nowrap;
    position: relative
}

.nav_link:hover {
    background-color: #e52d3e14;
    color: #E52D3E;
    box-shadow: 0 1px 4px 0 #e52d3e0d
}

.nav_link:active {
    background-color: #e52d3e24
}

.location_badge {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 32px;
    background: #FFF;
    border-radius: 30px;
    border: 2px solid #18553c26;
    box-shadow: 0 1px 4px 0 #18553c0d;
    flex-shrink: 0;
    transition: border-color .6s ease-in-out, box-shadow .6s ease-in-out
}

.location_badge:hover {
    border-color: #18553c59;
    box-shadow: 0 4px 18px 0 #18553c17
}

.location_icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #E52D3E 0%, #18553C 100%);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.location_icon::before {
    content: '';
    width: 10px;
    height: 10px;
    background: #FFF;
    border-radius: 2px
}

.location_text {
    font-size: 15px;
    font-weight: 700;
    color: #18553C;
    line-height: 1.2;
    letter-spacing: .04em;
    text-transform: uppercase
}

footer {
    background: linear-gradient(180deg, #FCF9EF 0%, #FFF 100%);
    border-top: 2px solid #e52d3e1f;
    padding: 96px 48px 48px;
    margin-top: 96px;
    position: relative
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #E52D3E 0%, #18553C 50%, #E52D3E 100%);
    opacity: .15
}

.footer_frame {
    max-width: 1366px;
    margin: 0 auto
}

.footer_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
    margin-bottom: 96px
}

.footer_col {
    display: flex;
    flex-direction: column;
    gap: 32px
}

.footer_logo_card {
    background: #FFF;
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0 4px 18px 0 #18553c17;
    border: 1px solid #e52d3e14;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content
}

.footer_logo_img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    display: block
}

.footer_company {
    font-size: 23px;
    font-weight: 700;
    color: #18553C;
    line-height: 1.2;
    margin-bottom: 16px
}

.footer_address {
    font-size: 18px;
    line-height: 1.9;
    color: #3a3a3a;
    font-style: normal
}

.footer_address_line {
    display: block;
    margin-bottom: 8px
}

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

.footer_contact_item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #FFF;
    border-radius: 16px;
    border: 1px solid #18553c1a;
    transition: border-color .5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.footer_contact_item:hover {
    border-color: #e52d3e40;
    box-shadow: 0 1px 4px 0 #e52d3e0d
}

.footer_contact_icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #E52D3E 0%, #18553C 100%);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.footer_contact_icon svg {
    width: 16px;
    height: 16px;
    fill: #FFF
}

.footer_contact_link {
    font-size: 18px;
    color: #2a2a2a;
    text-decoration: none;
    transition: color .4s ease-in-out
}

.footer_contact_link:hover {
    color: #E52D3E
}

.footer_heading {
    font-size: 23px;
    font-weight: 700;
    color: #E52D3E;
    line-height: 1.2;
    margin-bottom: 32px
}

.footer_text {
    font-size: 18px;
    line-height: 1.9;
    color: #3a3a3a;
    margin-bottom: 32px
}

.footer_year {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, #e52d3e14 0%, #18553c14 100%);
    border-radius: 16px;
    font-weight: 700;
    color: #18553C
}

.footer_bottom {
    padding-top: 48px;
    border-top: 1px solid #18553c1f;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 32px
}

.footer_copyright {
    font-size: 15px;
    color: #5a5a5a;
    line-height: 1.6
}

.footer_nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.footer_nav_link {
    padding: 8px 16px;
    font-size: 15px;
    color: #3a3a3a;
    text-decoration: none;
    border-radius: 16px;
    border: 1px solid #18553c26;
    transition: background-color .6s ease-in-out, border-color .6s ease-in-out, color .6s ease-in-out
}

.footer_nav_link:hover {
    background-color: #e52d3e0f;
    border-color: #e52d3e40;
    color: #E52D3E
}

.consent_popup {
    position: fixed;
    top: 32px;
    right: 32px;
    max-width: 460px;
    background: #FFF;
    border-radius: 16px;
    box-shadow: 0 9px 36px 0 #18553c1c;
    border: 2px solid #e52d3e26;
    padding: 32px;
    z-index: 1000;
    display: none;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity .65s cubic-bezier(0.22, 1, 0.36, 1), transform .65s cubic-bezier(0.22, 1, 0.36, 1)
}

.consent_popup.active {
    opacity: 1;
    transform: translateY(0)
}

.consent_text {
    font-size: 15px;
    line-height: 1.6;
    color: #3a3a3a;
    margin-bottom: 32px
}

.consent_headline {
    font-size: 18px;
    font-weight: 700;
    color: #18553C;
    line-height: 1.2;
    margin-top: 16px;
    margin-bottom: 8px
}

.consent_categories {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px
}

.consent_category {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: #FCF9EF;
    border-radius: 16px;
    border: 1px solid #18553c1a
}

.consent_category_label {
    font-size: 15px;
    color: #2a2a2a;
    font-weight: 400;
    flex: 1
}

.consent_toggle {
    position: relative;
    width: 52px;
    height: 28px;
    flex-shrink: 0
}

.consent_toggle input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute
}

.consent_slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #18553c33;
    border-radius: 30px;
    transition: background-color .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.consent_slider::before {
    position: absolute;
    content: '';
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background: #FFF;
    border-radius: 30px;
    transition: transform .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.consent_toggle input:checked+.consent_slider {
    background: #18553C
}

.consent_toggle input:checked+.consent_slider::before {
    transform: translateX(24px)
}

.consent_toggle input:disabled+.consent_slider {
    opacity: .5;
    cursor: not-allowed
}

.consent_category.required .consent_slider {
    background: #18553c66
}

.consent_sale_opt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: #e52d3e0a;
    border-radius: 16px;
    border: 1px solid #e52d3e26;
    margin-bottom: 32px
}

.consent_sale_label {
    font-size: 15px;
    color: #2a2a2a;
    font-weight: 400;
    flex: 1
}

.consent_actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

.consent_btn {
    flex: 1;
    min-width: 140px;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    border-radius: 30px;
    border: 2px solid;
    background: transparent;
    cursor: pointer;
    transition: background-color .55s cubic-bezier(0.22, 1, 0.36, 1), border-color .55s cubic-bezier(0.22, 1, 0.36, 1), color .55s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .55s cubic-bezier(0.22, 1, 0.36, 1)
}

.consent_btn.accept {
    border-color: #18553C;
    color: #18553C
}

.consent_btn.accept:hover {
    background-color: #18553C;
    color: #FFF;
    box-shadow: 0 4px 18px 0 #18553c17
}

.consent_btn.reject {
    border-color: #E52D3E;
    color: #E52D3E
}

.consent_btn.reject:hover {
    background-color: #E52D3E;
    color: #FFF;
    box-shadow: 0 4px 18px 0 #e52d3e17
}

.consent_link {
    display: inline-block;
    margin-top: 16px;
    font-size: 15px;
    color: #18553C;
    text-decoration: none;
    border-bottom: 1px solid #18553c4d;
    transition: border-color .4s ease-in-out, color .4s ease-in-out
}

.consent_link:hover {
    color: #E52D3E;
    border-bottom-color: #e52d3e80
}

@media (max-width: 1280px) {
    .header_frame {
        flex-wrap: wrap
    }

    .brand_box {
        gap: 16px
    }

    .brand_divider {
        height: 48px
    }

    .nav_primary {
        order: 3;
        width: 100%;
        justify-content: flex-start;
        margin-top: 16px
    }

    .location_badge {
        margin-left: auto
    }

    .footer_grid {
        grid-template-columns: 1fr
    }
}

@media (max-width: 768px) {
    header {
        padding: 32px 16px
    }

    .header_frame {
        gap: 32px
    }

    .brand_box {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px
    }

    .brand_divider {
        display: none
    }

    .logo_card {
        padding: 16px
    }

    .logo_img {
        width: 52px;
        height: 52px
    }

    .brand_text {
        font-size: 18px
    }

    .nav_primary {
        gap: 8px
    }

    .nav_link {
        padding: 16px;
        font-size: 15px
    }

    .location_badge {
        padding: 16px;
        width: 100%;
        justify-content: center
    }

    footer {
        padding: 48px 16px 32px;
        margin-top: 48px
    }

    .footer_grid {
        gap: 32px;
        margin-bottom: 48px
    }

    .footer_bottom {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 32px;
        gap: 16px
    }

    .footer_nav {
        width: 100%;
        flex-direction: column
    }

    .footer_nav_link {
        width: 100%;
        text-align: center
    }

    .consent_popup {
        top: 16px;
        right: 16px;
        left: 16px;
        max-width: none;
        padding: 32px 16px
    }

    .consent_actions {
        flex-direction: column
    }

    .consent_btn {
        width: 100%
    }
}

.policy_content {
    max-width: 1366px;
    margin: 0 auto;
    padding: 96px 32px;
    background: #FCF9EF
}

@media (max-width: 768px) {
    .policy_content {
        padding: 48px 16px
    }
}

.policy_content h1 {
    font-size: 72px;
    line-height: 1.2;
    color: #E52D3E;
    margin: 0 0 48px
}

.policy_content h2 {
    font-size: 43px;
    line-height: 1.2;
    color: #18553C;
    margin: 96px 0 32px
}

.policy_content h3 {
    font-size: 23px;
    line-height: 1.6;
    color: #18553C;
    margin: 48px 0 16px
}

.policy_content h4 {
    font-size: 18px;
    line-height: 1.6;
    color: #18553C;
    margin: 32px 0 16px
}

.policy_content h5 {
    font-size: 18px;
    line-height: 1.6;
    color: #18553C;
    margin: 32px 0 16px
}

.policy_content h6 {
    font-size: 15px;
    line-height: 1.6;
    color: #18553C;
    margin: 32px 0 16px
}

@media (max-width: 768px) {
    .policy_content h1 {
        font-size: 43px;
        margin: 0 0 32px
    }

    .policy_content h2 {
        font-size: 23px;
        margin: 48px 0 16px
    }

    .policy_content h3 {
        font-size: 18px;
        margin: 32px 0 16px
    }
}

.policy_content p {
    font-size: 18px;
    line-height: 1.9;
    color: #2a2a2a;
    margin: 0 0 16px
}

.policy_content strong,
.policy_content b {
    color: #18553C
}

.policy_content ul,
.policy_content ol {
    font-size: 18px;
    line-height: 1.9;
    color: #2a2a2a;
    margin: 0 0 32px;
    padding: 0 0 0 32px
}

.policy_content li {
    margin: 0 0 8px
}

.policy_content li:last-child {
    margin: 0
}

.policy_content ul ul,
.policy_content ul ol,
.policy_content ol ul,
.policy_content ol ol {
    margin: 8px 0 0
}

.policy_content table {
    width: 100%;
    font-size: 18px;
    line-height: 1.6;
    color: #2a2a2a;
    border-collapse: collapse;
    margin: 0 0 48px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 18px 0 #e52d3e17
}

.policy_content thead {
    background: #18553C;
    color: #fff
}

.policy_content th {
    padding: 16px;
    text-align: left
}

.policy_content th:first-child {
    border-radius: 16px 0 0 0
}

.policy_content th:last-child {
    border-radius: 0 16px 0 0
}

.policy_content tbody tr {
    border-bottom: 1px solid #18553c1a;
    transition: background-color .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.policy_content tbody tr:last-child {
    border-bottom: none
}

.policy_content tbody tr:hover {
    background: #e52d3e08
}

.policy_content td {
    padding: 16px
}

@media (max-width: 768px) {
    .policy_content table {
        font-size: 15px
    }

    .policy_content th,
    .policy_content td {
        padding: 8px
    }
}

.policy_content hr {
    border: none;
    height: 2px;
    background: linear-gradient(to right, #E52D3E, #18553C);
    margin: 96px 0;
    border-radius: 2px
}

@media (max-width: 768px) {
    .policy_content hr {
        margin: 48px 0
    }
}

.policy_content div {
    margin: 0 0 32px
}

.inf_svc {
    max-width: 1366px;
    margin: 0 auto;
    background: #FCF9EF
}

.inf_svc .intro_wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 48px;
    padding: 48px 32px;
    position: relative;
    overflow: hidden
}

.inf_svc .intro_wrap::before {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: #e52d3e14;
    top: -120px;
    right: -80px;
    z-index: 0;
    pointer-events: none
}

.inf_svc .intro_wrap::after {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: #18553c0f;
    bottom: -90px;
    left: -60px;
    z-index: 0;
    pointer-events: none
}

.inf_svc .intro_img_card {
    flex: 0 0 360px;
    position: relative;
    z-index: 1
}

.inf_svc .intro_img_card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    box-shadow: 0 9px 36px 0 #e52d3e1c;
    position: relative
}

.inf_svc .intro_img_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to bottom, #0000004d, transparent);
    border-radius: 16px 16px 0 0;
    pointer-events: none;
    z-index: 1
}

.inf_svc .intro_txt {
    flex: 1;
    position: relative;
    z-index: 1
}

.inf_svc .intro_heading {
    font-size: 43px;
    line-height: 1.2;
    color: #E52D3E;
    margin: 0 0 24px;
    overflow: hidden
}

.inf_svc .intro_heading span {
    display: inline-block;
    animation: letter_drop .5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    opacity: 0;
    transform: translateY(-40px)
}

.inf_svc .intro_heading span:nth-child(1) {
    animation-delay: .05s
}

.inf_svc .intro_heading span:nth-child(2) {
    animation-delay: .1s
}

.inf_svc .intro_heading span:nth-child(3) {
    animation-delay: .15s
}

.inf_svc .intro_heading span:nth-child(4) {
    animation-delay: .2s
}

.inf_svc .intro_heading span:nth-child(5) {
    animation-delay: .25s
}

.inf_svc .intro_heading span:nth-child(6) {
    animation-delay: .3s
}

.inf_svc .intro_heading span:nth-child(7) {
    animation-delay: .35s
}

.inf_svc .intro_heading span:nth-child(8) {
    animation-delay: .4s
}

.inf_svc .intro_heading span:nth-child(9) {
    animation-delay: .45s
}

.inf_svc .intro_heading span:nth-child(10) {
    animation-delay: .5s
}

.inf_svc .intro_heading span:nth-child(11) {
    animation-delay: .55s
}

.inf_svc .intro_heading span:nth-child(12) {
    animation-delay: .6s
}

.inf_svc .intro_heading span:nth-child(13) {
    animation-delay: .65s
}

.inf_svc .intro_heading span:nth-child(14) {
    animation-delay: .7s
}

.inf_svc .intro_heading span:nth-child(15) {
    animation-delay: .75s
}

.inf_svc .intro_heading span:nth-child(16) {
    animation-delay: .8s
}

.inf_svc .intro_heading span:nth-child(17) {
    animation-delay: .85s
}

.inf_svc .intro_heading span:nth-child(18) {
    animation-delay: .9s
}

.inf_svc .intro_heading span:nth-child(19) {
    animation-delay: .95s
}

.inf_svc .intro_heading span:nth-child(20) {
    animation-delay: 1s
}

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

.inf_svc .intro_quote {
    font-size: 18px;
    line-height: 1.6;
    color: #2a2a2a;
    margin: 0;
    font-weight: 300
}

@media (max-width: 768px) {
    .inf_svc .intro_wrap {
        flex-direction: column;
        padding: 32px 16px
    }

    .inf_svc .intro_img_card {
        flex: 0 0 auto;
        width: 100%
    }

    .inf_svc .intro_heading {
        font-size: 23px
    }

    .inf_svc .intro_quote {
        font-size: 15px
    }
}

.inf_svc .prog_area {
    padding: 96px 32px;
    background: #fff;
    position: relative
}

.inf_svc .prog_area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e52d3e33 50%, transparent)
}

.inf_svc .prog_area::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #18553c33 50%, transparent)
}

.inf_svc .prog_container {
    max-width: 780px;
    margin: 0 auto
}

.inf_svc .prog_label {
    font-size: 23px;
    line-height: 1.2;
    color: #18553C;
    margin: 0 0 48px;
    text-align: center;
    font-weight: 600
}

.inf_svc .prog_txt {
    font-size: 18px;
    line-height: 1.9;
    color: #2a2a2a;
    margin: 0 0 32px
}

.inf_svc .prog_txt:last-child {
    margin-bottom: 0
}

@media (max-width: 768px) {
    .inf_svc .prog_area {
        padding: 48px 16px
    }

    .inf_svc .prog_label {
        font-size: 18px;
        margin-bottom: 32px
    }

    .inf_svc .prog_txt {
        font-size: 15px
    }
}

.inf_svc .inverted_zone {
    background: #18553C;
    padding: 96px 32px;
    position: relative;
    overflow: hidden
}

.inf_svc .inverted_zone::before {
    content: '';
    position: absolute;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle at bottom right, #e52d3e26, transparent 70%);
    bottom: -180px;
    right: -120px;
    pointer-events: none
}

.inf_svc .metric_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto
}

.inf_svc .metric_card {
    background: #fcf9ef14;
    padding: 48px 32px;
    border-radius: 30px;
    text-align: center;
    border: 3px solid #fcf9ef26;
    outline: 1px solid #fcf9ef14;
    outline-offset: -6px;
    transition: transform .55s cubic-bezier(0.22, 1, 0.36, 1), border-color .55s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .55s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden
}

.inf_svc .metric_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at bottom right, #e52d3e1f, transparent 65%);
    opacity: 0;
    transition: opacity .55s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none
}

.inf_svc .metric_card:hover {
    transform: translateY(-8px);
    border-color: #e52d3e66;
    box-shadow: 0 9px 36px 0 #e52d3e1c
}

.inf_svc .metric_card:hover::before {
    opacity: 1
}

.inf_svc .metric_num {
    font-size: 72px;
    line-height: 1.2;
    color: #E52D3E;
    margin: 0 0 16px;
    font-weight: 700;
    position: relative
}

.inf_svc .metric_desc {
    font-size: 18px;
    line-height: 1.6;
    color: #FCF9EF;
    margin: 0
}

@media (max-width: 1280px) {
    .inf_svc .metric_grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width: 768px) {
    .inf_svc .inverted_zone {
        padding: 48px 16px
    }

    .inf_svc .metric_grid {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .inf_svc .metric_card {
        padding: 32px 16px
    }

    .inf_svc .metric_num {
        font-size: 43px
    }

    .inf_svc .metric_desc {
        font-size: 15px
    }
}

.inf_svc .expert_section {
    padding: 96px 32px;
    background: #FCF9EF;
    position: relative
}

.inf_svc .expert_flex {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto
}

.inf_svc .expert_profile {
    flex: 0 0 240px;
    text-align: center
}

.inf_svc .expert_photo_wrap {
    width: 180px;
    height: 180px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 18px 0 #18553c17;
    border: 4px solid #fff;
    position: relative
}

.inf_svc .expert_photo_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block
}

.inf_svc .expert_name {
    font-size: 18px;
    line-height: 1.2;
    color: #18553C;
    margin: 0 0 8px;
    font-weight: 600
}

.inf_svc .expert_role {
    font-size: 15px;
    line-height: 1.6;
    color: #5a5a5a;
    margin: 0;
    font-weight: 300
}

.inf_svc .expert_content {
    flex: 1
}

.inf_svc .expert_heading {
    font-size: 23px;
    line-height: 1.2;
    color: #E52D3E;
    margin: 0 0 32px;
    font-weight: 700
}

.inf_svc .expert_para {
    font-size: 18px;
    line-height: 1.9;
    color: #2a2a2a;
    margin: 0 0 32px
}

.inf_svc .expert_para:last-child {
    margin-bottom: 0
}

.inf_svc .expert_list {
    list-style: none;
    padding: 0;
    margin: 32px 0 0
}

.inf_svc .expert_list li {
    font-size: 18px;
    line-height: 1.9;
    color: #2a2a2a;
    margin: 0 0 16px;
    padding-left: 32px;
    position: relative
}

.inf_svc .expert_list li:last-child {
    margin-bottom: 0
}

.inf_svc .expert_list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #E52D3E
}

@media (max-width: 768px) {
    .inf_svc .expert_section {
        padding: 48px 16px
    }

    .inf_svc .expert_flex {
        flex-direction: column
    }

    .inf_svc .expert_profile {
        flex: 0 0 auto;
        width: 100%
    }

    .inf_svc .expert_heading {
        font-size: 18px
    }

    .inf_svc .expert_para,
    .inf_svc .expert_list li {
        font-size: 15px
    }
}

.inf_svc .approach_zone {
    padding: 96px 32px;
    background: #fff;
    position: relative
}

.inf_svc .approach_inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: center
}

.inf_svc .approach_visual {
    flex: 0 0 480px;
    position: relative
}

.inf_svc .approach_img_container {
    width: 100%;
    height: 640px;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 9px 36px 0 #18553c1c;
    position: relative
}

.inf_svc .approach_img_container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.inf_svc .approach_detail {
    flex: 1
}

.inf_svc .approach_title {
    font-size: 43px;
    line-height: 1.2;
    color: #18553C;
    margin: 0 0 32px;
    font-weight: 300
}

.inf_svc .approach_body {
    font-size: 18px;
    line-height: 1.9;
    color: #2a2a2a;
    margin: 0 0 32px
}

.inf_svc .approach_body:last-child {
    margin-bottom: 0
}

@media (max-width: 1280px) {
    .inf_svc .approach_inner {
        flex-direction: column
    }

    .inf_svc .approach_visual {
        flex: 0 0 auto;
        width: 100%
    }

    .inf_svc .approach_img_container {
        height: 480px
    }
}

@media (max-width: 768px) {
    .inf_svc .approach_zone {
        padding: 48px 16px
    }

    .inf_svc .approach_img_container {
        height: 360px
    }

    .inf_svc .approach_title {
        font-size: 23px
    }

    .inf_svc .approach_body {
        font-size: 15px
    }
}

.kontakt_seite {
    max-width: 1366px;
    margin: 0 auto;
    background: #FCF9EF
}

.kontakt_seite .hero_img_blk {
    position: relative;
    padding: 96px 32px 48px;
    overflow: hidden
}

.kontakt_seite .hero_img_blk::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(42deg, #e52d3e08, #e52d3e08 12px, transparent 12px, transparent 24px);
    pointer-events: none;
    z-index: 1
}

.kontakt_seite .hero_visual {
    position: relative;
    max-width: 920px;
    margin: 0 auto 48px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 9px 36px 0 #e52d3e1c;
    z-index: 2
}

.kontakt_seite .hero_visual::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, #18553cb8, transparent);
    pointer-events: none
}

.kontakt_seite .hero_visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: saturate(0.85) contrast(1.05)
}

.kontakt_seite .hero_txt_zone {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    z-index: 2
}

.kontakt_seite .hero_haupt {
    font-size: 72px;
    line-height: 1.2;
    color: #E52D3E;
    margin: 0 0 16px;
    font-weight: 700
}

.kontakt_seite .hero_unter {
    font-size: 23px;
    line-height: 1.6;
    color: #18553C;
    margin: 0 0 32px;
    font-weight: 300
}

.kontakt_seite .hero_link_aktion {
    display: inline-block;
    font-size: 18px;
    color: #18553C;
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    transition: color .55s cubic-bezier(0.22, 1, 0.36, 1)
}

.kontakt_seite .hero_link_aktion::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    right: 50%;
    height: 2px;
    background: #E52D3E;
    transition: left .6s cubic-bezier(0.22, 1, 0.36, 1), right .6s cubic-bezier(0.22, 1, 0.36, 1)
}

.kontakt_seite .hero_link_aktion:hover::after {
    left: 0;
    right: 0
}

.kontakt_seite .hero_link_aktion:hover {
    color: #E52D3E
}

.kontakt_seite .divider_doppel {
    max-width: 1366px;
    margin: 0 auto;
    padding: 48px 0;
    position: relative
}

.kontakt_seite .divider_doppel::before,
.kontakt_seite .divider_doppel::after {
    content: '';
    position: absolute;
    left: 32px;
    right: 32px;
    height: 2px;
    background-image: radial-gradient(circle, #18553C 1px, transparent 1px);
    background-size: 8px 2px;
    background-repeat: repeat-x
}

.kontakt_seite .divider_doppel::before {
    top: 48px
}

.kontakt_seite .divider_doppel::after {
    top: 56px
}

.kontakt_seite .form_haupt_bereich {
    background: #fff;
    padding: 96px 32px;
    position: relative
}

.kontakt_seite .form_haupt_bereich::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #E52D3E
}

.kontakt_seite .form_haupt_bereich::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #18553C
}

.kontakt_seite .form_wrapper {
    max-width: 680px;
    margin: 0 auto
}

.kontakt_seite .form_obertitel {
    font-size: 43px;
    line-height: 1.2;
    color: #18553C;
    margin: 0 0 48px;
    text-align: center;
    font-weight: 600
}

.kontakt_seite .info_karten_reihe {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin-bottom: 48px
}

.kontakt_seite .info_karte {
    background: #FCF9EF;
    padding: 16px;
    border-radius: 16px;
    box-shadow: inset 0 1px 4px 0 #18553c0d;
    transition: transform .5s ease-in-out, box-shadow .5s ease-in-out
}

.kontakt_seite .info_karte:hover {
    transform: translateY(-4px);
    box-shadow: inset 0 1px 4px 0 #18553c0d 0 4px 18px 0 #e52d3e17
}

.kontakt_seite .info_karte_label {
    font-size: 15px;
    line-height: 1.6;
    color: #E52D3E;
    margin: 0 0 8px;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase
}

.kontakt_seite .info_karte_wert {
    font-size: 18px;
    line-height: 1.6;
    color: #18553C;
    margin: 0;
    word-break: break-word
}

.kontakt_seite .form_element {
    margin-bottom: 32px
}

.kontakt_seite .form_label {
    display: block;
    font-size: 18px;
    line-height: 1.6;
    color: #18553C;
    margin-bottom: 8px;
    font-weight: 500
}

.kontakt_seite .form_input {
    width: 100%;
    padding: 16px;
    font-size: 18px;
    line-height: 1.6;
    color: #18553C;
    background: #fff;
    border: 2px solid #FCF9EF;
    border-radius: 16px;
    box-shadow: inset 0 1px 4px 0 #18553c0d;
    transition: border-color .45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .45s cubic-bezier(0.22, 1, 0.36, 1);
    outline: none
}

.kontakt_seite .form_input::placeholder {
    color: #18553C;
    font-weight: 300;
    opacity: .5
}

.kontakt_seite .form_input:focus {
    border-color: #E52D3E;
    box-shadow: inset 0 1px 4px 0 #18553c0d 0 0 0 3px #e52d3e1a
}

.kontakt_seite .checkbox_gruppe {
    background: #FCF9EF;
    padding: 32px;
    border-radius: 16px;
    margin-bottom: 32px;
    box-shadow: inset 0 1px 4px 0 #18553c0d
}

.kontakt_seite .checkbox_gruppe_titel {
    font-size: 23px;
    line-height: 1.6;
    color: #E52D3E;
    margin: 0 0 16px;
    font-weight: 600
}

.kontakt_seite .checkbox_item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    cursor: pointer;
    transition: transform .4s ease-in-out
}

.kontakt_seite .checkbox_item:hover {
    transform: translateX(4px)
}

.kontakt_seite .checkbox_item:last-child {
    margin-bottom: 0
}

.kontakt_seite .checkbox_native {
    position: absolute;
    opacity: 0;
    pointer-events: none
}

.kontakt_seite .checkbox_custom {
    width: 24px;
    height: 24px;
    border: 2px solid #18553C;
    border-radius: 2px;
    margin-right: 16px;
    flex-shrink: 0;
    position: relative;
    transition: background-color .5s cubic-bezier(0.22, 1, 0.36, 1), border-color .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.kontakt_seite .checkbox_native:checked+.checkbox_custom {
    background-color: #E52D3E;
    border-color: #E52D3E
}

.kontakt_seite .checkbox_custom::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 12px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) scale(0);
    transition: transform .55s cubic-bezier(0.22, 1, 0.36, 1)
}

.kontakt_seite .checkbox_native:checked+.checkbox_custom::after {
    transform: rotate(45deg) scale(1)
}

.kontakt_seite .checkbox_label_txt {
    font-size: 18px;
    line-height: 1.6;
    color: #18553C;
    flex: 1
}

.kontakt_seite .checkbox_native:checked~.checkbox_label_txt {
    font-weight: 600;
    color: #E52D3E
}

.kontakt_seite .privacy_zone {
    margin-bottom: 32px;
    padding: 16px;
    background: #FCF9EF;
    border-radius: 16px;
    box-shadow: inset 0 1px 4px 0 #18553c0d
}

.kontakt_seite .privacy_check_wrapper {
    display: flex;
    align-items: flex-start;
    cursor: pointer
}

.kontakt_seite .privacy_check_native {
    position: absolute;
    opacity: 0;
    pointer-events: none
}

.kontakt_seite .privacy_check_custom {
    width: 24px;
    height: 24px;
    border: 2px solid #E52D3E;
    border-radius: 2px;
    margin-right: 16px;
    flex-shrink: 0;
    position: relative;
    transition: background-color .6s cubic-bezier(0.22, 1, 0.36, 1), border-color .6s cubic-bezier(0.22, 1, 0.36, 1)
}

.kontakt_seite .privacy_check_native:checked+.privacy_check_custom {
    background-color: #18553C;
    border-color: #18553C
}

.kontakt_seite .privacy_check_custom::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 12px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) scale(0);
    transition: transform .65s cubic-bezier(0.22, 1, 0.36, 1)
}

.kontakt_seite .privacy_check_native:checked+.privacy_check_custom::after {
    transform: rotate(45deg) scale(1)
}

.kontakt_seite .privacy_txt {
    font-size: 15px;
    line-height: 1.6;
    color: #18553C;
    flex: 1
}

.kontakt_seite .privacy_txt a {
    color: #E52D3E;
    text-decoration: none;
    border-bottom: 1px solid #E52D3E;
    transition: color .4s ease-in-out, border-color .4s ease-in-out
}

.kontakt_seite .privacy_txt a:hover {
    color: #18553C;
    border-color: #18553C
}

.kontakt_seite .submit_btn {
    width: 100%;
    padding: 16px 32px;
    font-size: 23px;
    line-height: 1.6;
    color: #fff;
    background: #E52D3E;
    border: 2px solid #E52D3E;
    border-radius: 16px;
    cursor: pointer;
    transition: background-color .5s ease-in-out, border-color .5s ease-in-out, transform .5s ease-in-out;
    box-shadow: 0 4px 18px 0 #e52d3e17;
    font-weight: 600
}

.kontakt_seite .submit_btn:hover {
    background-color: #18553C;
    border-color: #18553C;
    transform: translateY(-2px);
    box-shadow: 0 9px 36px 0 #18553c1c
}

.kontakt_seite .submit_btn:active {
    transform: translateY(0)
}

@media (max-width: 768px) {
    .kontakt_seite .hero_img_blk {
        padding: 48px 16px 32px
    }

    .kontakt_seite .hero_haupt {
        font-size: 43px
    }

    .kontakt_seite .hero_unter {
        font-size: 18px
    }

    .kontakt_seite .form_haupt_bereich {
        padding: 48px 16px
    }

    .kontakt_seite .form_obertitel {
        font-size: 23px;
        margin-bottom: 32px
    }

    .kontakt_seite .info_karten_reihe {
        grid-template-columns: 1fr
    }

    .kontakt_seite .checkbox_gruppe {
        padding: 16px
    }

    .kontakt_seite .divider_doppel::before,
    .kontakt_seite .divider_doppel::after {
        left: 16px;
        right: 16px
    }
}

@media (min-width: 769px) and (max-width: 1280px) {
    .kontakt_seite .hero_haupt {
        font-size: 58px
    }

    .kontakt_seite .info_karten_reihe {
        grid-template-columns: repeat(2, 1fr)
    }
}

@keyframes temp_shift {

    0%,
    100% {
        background-color: #fff
    }

    50% {
        background-color: #fcf9ef4d
    }
}

.kontakt_seite .form_haupt_bereich {
    animation: temp_shift 18s ease-in-out infinite
}

.inflat_base {
    background: #FCF9EF;
    color: #2a2a2a;
    overflow-x: clip
}

.inflat_base * {
    box-sizing: border-box
}

.inflat_base img {
    max-width: 100%;
    height: auto;
    display: block
}

.inflat_base button {
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
    font: inherit
}

.top_strip {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    max-width: 1366px;
    margin: 0 auto;
    padding: 16px;
    min-height: 280px;
    overflow: hidden
}

.strip_img_col {
    flex: 0 0 220px;
    position: relative;
    overflow: hidden;
    border-radius: 2px
}

.strip_img_col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(100%)
}

.strip_txt_zone {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px 48px;
    position: relative;
    background: linear-gradient(135deg, #e52d3e08 0%, transparent 60%)
}

.strip_txt_zone::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    bottom: 16px;
    background-image: radial-gradient(circle, #18553C 1px, transparent 1px);
    background-size: 16px 16px;
    opacity: .08;
    pointer-events: none;
    z-index: 0
}

.strip_main_head {
    font-size: 43px;
    line-height: 1.2;
    color: #E52D3E;
    margin: 0 0 16px;
    position: relative;
    z-index: 1
}

.strip_desc {
    font-size: 18px;
    line-height: 1.6;
    color: #3a3a3a;
    margin: 0;
    max-width: 620px;
    position: relative;
    z-index: 1
}

@media (max-width: 768px) {
    .top_strip {
        flex-direction: column;
        min-height: auto
    }

    .strip_img_col {
        flex: 0 0 180px;
        width: 100%
    }

    .strip_txt_zone {
        padding: 32px 16px
    }

    .strip_main_head {
        font-size: 23px
    }

    .strip_desc {
        font-size: 15px
    }
}

.num_grid_wrap {
    max-width: 1366px;
    margin: 0 auto;
    padding: 96px 16px;
    position: relative
}

.num_grid_wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, #18553c26 20%, #18553c26 80%, transparent 100%);
    transform: translateX(-50%) rotate(2deg);
    pointer-events: none
}

.num_intro {
    text-align: center;
    margin: 0 auto 48px;
    max-width: 720px
}

.num_intro h2 {
    font-size: 43px;
    line-height: 1.2;
    color: #18553C;
    margin: 0 0 16px
}

.num_intro p {
    font-size: 18px;
    line-height: 1.6;
    color: #3a3a3a;
    margin: 0
}

.num_cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px
}

.num_card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 18px 0 #e52d3e17;
    position: relative;
    transition: transform .5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .6s ease-in-out
}

.num_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 9px 36px 0 #e52d3e1c
}

.num_card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 30px 30px;
    border-color: transparent transparent #E52D3E;
    border-radius: 0 0 16px 0;
    transition: border-width .55s cubic-bezier(0.22, 1, 0.36, 1)
}

.num_card:hover::after {
    border-width: 0 0 46px 46px
}

.num_val {
    font-size: 72px;
    line-height: 1.2;
    color: #E52D3E;
    margin: 0 0 8px;
    font-weight: 700
}

.num_label {
    font-size: 18px;
    line-height: 1.6;
    color: #18553C;
    margin: 0 0 16px;
    font-weight: 600
}

.num_detail {
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0
}

@media (max-width: 768px) {
    .num_grid_wrap {
        padding: 48px 16px
    }

    .num_intro h2 {
        font-size: 23px
    }

    .num_intro p {
        font-size: 15px
    }

    .num_cards {
        grid-template-columns: 1fr
    }

    .num_val {
        font-size: 43px
    }
}

.story_band {
    background: #fff;
    position: relative;
    overflow: hidden
}

.story_band::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 85% 85%, #18553c0f 0%, transparent 50%);
    pointer-events: none;
    z-index: 0
}

.story_band::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 15% 15%, #e52d3e0a 0%, transparent 45%);
    pointer-events: none;
    z-index: 0;
    animation: drift_grad_1 18s ease-in-out infinite
}

@keyframes drift_grad_1 {

    0%,
    100% {
        transform: translate(0, 0)
    }

    50% {
        transform: translate(-30px, 20px)
    }
}

.story_inner {
    max-width: 1366px;
    margin: 0 auto;
    padding: 96px 16px;
    position: relative;
    z-index: 1
}

.story_flex {
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: center
}

.story_person {
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px
}

.story_portrait_wrap {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 18px 0 #18553c17;
    border: 4px solid #FCF9EF
}

.story_portrait_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top
}

.story_name {
    font-size: 18px;
    line-height: 1.2;
    color: #18553C;
    margin: 0;
    font-weight: 600;
    text-align: center
}

.story_role {
    font-size: 15px;
    line-height: 1.2;
    color: #6a6a6a;
    margin: 0;
    text-align: center
}

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

.story_txt h3 {
    font-size: 23px;
    line-height: 1.6;
    color: #E52D3E;
    margin: 0
}

.story_txt p {
    font-size: 15px;
    line-height: 1.9;
    color: #3a3a3a;
    margin: 0;
    max-width: 640px
}

@media (max-width: 768px) {
    .story_inner {
        padding: 48px 16px
    }

    .story_flex {
        flex-direction: column;
        gap: 32px
    }

    .story_person {
        flex: 0 0 auto
    }
}

.trust_zone {
    max-width: 1366px;
    margin: 0 auto;
    padding: 96px 16px
}

.trust_head_block {
    text-align: center;
    margin: 0 auto 48px;
    max-width: 800px
}

.trust_head_block h2 {
    font-size: 43px;
    line-height: 1.2;
    color: #18553C;
    margin: 0 0 16px
}

.trust_head_block p {
    font-size: 18px;
    line-height: 1.6;
    color: #3a3a3a;
    margin: 0
}

.trust_compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 960px;
    margin: 0 auto 48px
}

.compare_col {
    background: #fff;
    border-radius: 30px;
    padding: 32px;
    box-shadow: inset 0 1px 4px 0 #18553c0d;
    position: relative
}

.compare_col h4 {
    font-size: 23px;
    line-height: 1.2;
    color: #E52D3E;
    margin: 0 0 16px;
    font-weight: 600
}

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

.compare_list li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    font-size: 15px;
    line-height: 1.6;
    color: #3a3a3a
}

.compare_list li::before {
    content: '';
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    border-radius: 50%
}

.compare_col.has_check .compare_list li::before {
    background: #18553C;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    mask-size: cover
}

.compare_col.has_cross .compare_list li::before {
    background: #E52D3E;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3E%3C/svg%3E");
    mask-size: cover
}

.trust_logos {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    align-items: center
}

.trust_badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    border-radius: 16px;
    background: linear-gradient(135deg, #fff 0%, #FCF9EF 100%);
    box-shadow: 0 1px 4px 0 #e52d3e0d;
    transition: transform .45s cubic-bezier(0.22, 1, 0.36, 1)
}

.trust_badge:hover {
    transform: scale(1.05)
}

.badge_icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E52D3E 0%, #18553C 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 23px;
    font-weight: 700
}

.badge_txt {
    font-size: 15px;
    line-height: 1.2;
    color: #3a3a3a;
    text-align: center;
    margin: 0
}

@media (max-width: 768px) {
    .trust_zone {
        padding: 48px 16px
    }

    .trust_head_block h2 {
        font-size: 23px
    }

    .trust_head_block p {
        font-size: 15px
    }

    .trust_compare {
        grid-template-columns: 1fr;
        gap: 32px
    }
}

.journey_wrap {
    background: #fff;
    position: relative;
    overflow: hidden
}

.journey_wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 90%, #e52d3e0d 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
    animation: drift_grad_2 22s ease-in-out infinite
}

@keyframes drift_grad_2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1)
    }

    50% {
        transform: translate(40px, -25px) scale(1.1)
    }
}

.journey_inner {
    max-width: 1366px;
    margin: 0 auto;
    padding: 96px 16px;
    position: relative;
    z-index: 1
}

.journey_head {
    text-align: center;
    margin: 0 auto 48px;
    max-width: 720px
}

.journey_head h2 {
    font-size: 43px;
    line-height: 1.2;
    color: #E52D3E;
    margin: 0 0 16px
}

.journey_head p {
    font-size: 18px;
    line-height: 1.6;
    color: #3a3a3a;
    margin: 0
}

.journey_stages {
    display: flex;
    flex-direction: column;
    gap: 48px
}

.stage_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center
}

.stage_row:nth-child(even) {
    direction: rtl
}

.stage_row:nth-child(even)>* {
    direction: ltr
}

.stage_img_wrap {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 4px 18px 0 #18553c17;
    aspect-ratio: 16 / 9
}

.stage_img_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .65s cubic-bezier(0.22, 1, 0.36, 1)
}

.stage_img_wrap:hover img {
    transform: scale(1.08)
}

.stage_caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #18553ceb;
    color: #fff;
    padding: 16px;
    font-size: 15px;
    line-height: 1.6;
    transform: translateY(100%);
    transition: transform .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.stage_img_wrap:hover .stage_caption {
    transform: translateY(0)
}

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

.stage_txt h3 {
    font-size: 23px;
    line-height: 1.2;
    color: #18553C;
    margin: 0
}

.stage_txt p {
    font-size: 15px;
    line-height: 1.9;
    color: #3a3a3a;
    margin: 0
}

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

.stage_txt ul li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    font-size: 15px;
    line-height: 1.6;
    color: #3a3a3a
}

.stage_txt ul li::before {
    content: '';
    flex: 0 0 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 8px;
    border-color: transparent transparent transparent #E52D3E;
    margin-top: 5px
}

@media (max-width: 1280px) {
    .stage_row {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .stage_row:nth-child(even) {
        direction: ltr
    }
}

@media (max-width: 768px) {
    .journey_inner {
        padding: 48px 16px
    }

    .journey_head h2 {
        font-size: 23px
    }

    .journey_head p {
        font-size: 15px
    }

    .journey_stages {
        gap: 32px
    }
}

.journey_wrap svg {
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 60px;
    display: block;
    z-index: 1
}

.journey_wrap svg path {
    fill: #FCF9EF
}

.abt_pg {
    background: #FCF9EF;
    overflow-x: clip
}

.abt_pg .intro_grad {
    position: relative;
    padding: 96px 16px;
    background: linear-gradient(135deg, #E52D3E 0%, #18553C 100%);
    overflow: hidden
}

.abt_pg .intro_grad::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle at bottom right, #fcf9ef26 0%, transparent 70%);
    pointer-events: none
}

.abt_pg .intro_grad::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle at bottom right, #fcf9ef1a 0%, transparent 65%);
    pointer-events: none
}

.abt_pg .intro_wrap {
    max-width: 1366px;
    margin: 0 auto;
    position: relative;
    z-index: 2
}

.abt_pg .intro_num {
    font-size: 72px;
    line-height: 1.2;
    color: #FCF9EF;
    margin: 0 0 16px;
    font-weight: 700;
    letter-spacing: -.02em
}

.abt_pg .intro_heading {
    font-size: 43px;
    line-height: 1.2;
    color: #FCF9EF;
    margin: 0 0 32px;
    font-weight: 600;
    max-width: 820px
}

.abt_pg .intro_txt {
    font-size: 18px;
    line-height: 1.6;
    color: #FCF9EF;
    margin: 0;
    max-width: 680px
}

.abt_pg .story_zone {
    padding: 96px 16px;
    background: #fff;
    position: relative
}

.abt_pg .story_zone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 30%, #e52d3e08 0%, transparent 50%), radial-gradient(circle at 80% 70%, #18553c08 0%, transparent 50%);
    pointer-events: none;
    z-index: 1
}

.abt_pg .story_inner {
    max-width: 1366px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 48px
}

.abt_pg .story_media_group {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center
}

.abt_pg .story_img_frame {
    width: 100%;
    max-width: 520px;
    aspect-ratio: 16/9;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 9px 36px 0 #e52d3e1c;
    position: relative
}

.abt_pg .story_img_frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s cubic-bezier(0.22, 1, 0.36, 1)
}

.abt_pg .story_img_frame:hover img {
    transform: scale(1.05)
}

.abt_pg .story_txt_area {
    max-width: 720px;
    margin: 0 auto
}

.abt_pg .story_label {
    font-size: 15px;
    line-height: 1.6;
    color: #E52D3E;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin: 0 0 16px;
    font-weight: 600
}

.abt_pg .story_hdg {
    font-size: 43px;
    line-height: 1.2;
    color: #18553C;
    margin: 0 0 32px;
    font-weight: 700
}

.abt_pg .story_para_one {
    font-size: 18px;
    line-height: 1.9;
    color: #2a2a2a;
    margin: 0 0 32px
}

.abt_pg .story_para_two {
    font-size: 18px;
    line-height: 1.9;
    color: #2a2a2a;
    margin: 0 0 32px
}

.abt_pg .story_para_three {
    font-size: 18px;
    line-height: 1.9;
    color: #2a2a2a;
    margin: 0
}

.abt_pg .story_para_one .hl_term {
    background: #e52d3e1f;
    padding: 2px 8px;
    border-radius: 2px;
    color: #2a2a2a
}

.abt_pg .story_quote_mark {
    position: absolute;
    top: -32px;
    left: -48px;
    font-size: 180px;
    line-height: 1;
    color: #e52d3e14;
    font-weight: 700;
    pointer-events: none;
    user-select: none
}

.abt_pg .values_band {
    padding: 96px 16px;
    background: #18553C;
    position: relative;
    overflow: hidden
}

.abt_pg .values_band::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: #fcf9ef0a;
    pointer-events: none
}

.abt_pg .values_band::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: 8%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: #e52d3e0f;
    pointer-events: none
}

.abt_pg .values_band .pattern_layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .03;
    pointer-events: none;
    background-image: radial-gradient(circle at 0% 0%, #FCF9EF 10%, transparent 10%), radial-gradient(circle at 25% 25%, #FCF9EF 10%, transparent 10%), radial-gradient(circle at 50% 0%, #FCF9EF 10%, transparent 10%), radial-gradient(circle at 75% 25%, #FCF9EF 10%, transparent 10%), radial-gradient(circle at 100% 0%, #FCF9EF 10%, transparent 10%), radial-gradient(circle at 12.5% 50%, #FCF9EF 10%, transparent 10%), radial-gradient(circle at 37.5% 75%, #FCF9EF 10%, transparent 10%), radial-gradient(circle at 62.5% 50%, #FCF9EF 10%, transparent 10%), radial-gradient(circle at 87.5% 75%, #FCF9EF 10%, transparent 10%);
    background-size: 120px 120px;
    background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0
}

.abt_pg .values_contain {
    max-width: 1366px;
    margin: 0 auto;
    position: relative;
    z-index: 2
}

.abt_pg .values_top_txt {
    text-align: center;
    margin: 0 0 48px
}

.abt_pg .values_heading {
    font-size: 43px;
    line-height: 1.2;
    color: #FCF9EF;
    margin: 0 0 16px;
    font-weight: 700
}

.abt_pg .values_subline {
    font-size: 18px;
    line-height: 1.6;
    color: #fcf9efd9;
    margin: 0;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto
}

.abt_pg .values_grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px
}

.abt_pg .val_card {
    background: #fcf9ef14;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #fcf9ef1f;
    transition: transform .5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .5s cubic-bezier(0.22, 1, 0.36, 1), border-color .5s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: val_reveal .7s cubic-bezier(0.22, 1, 0.36, 1) forwards
}

.abt_pg .val_card:nth-child(1) {
    animation-delay: .1s
}

.abt_pg .val_card:nth-child(2) {
    animation-delay: .25s
}

.abt_pg .val_card:nth-child(3) {
    animation-delay: .4s
}

.abt_pg .val_card:nth-child(4) {
    animation-delay: .55s
}

@keyframes val_reveal {
    from {
        opacity: 0;
        transform: translateY(32px)
    }

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

.abt_pg .val_card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 9px 36px 0 #e52d3e1c;
    border-color: #e52d3e4d
}

.abt_pg .val_card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at bottom right, #e52d3e14 0%, transparent 60%);
    opacity: 0;
    transition: opacity .6s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none
}

.abt_pg .val_card:hover::before {
    opacity: 1
}

.abt_pg .val_icon_wrap {
    width: 64px;
    height: 64px;
    background: #e52d3e26;
    border-radius: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 16px;
    transition: background .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.abt_pg .val_card:hover .val_icon_wrap {
    background: #e52d3e40
}

.abt_pg .val_icon_shape {
    width: 28px;
    height: 28px;
    background: #E52D3E;
    border-radius: 2px;
    transition: transform .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.abt_pg .val_card:hover .val_icon_shape {
    transform: rotate(45deg)
}

.abt_pg .val_card_hdg {
    font-size: 23px;
    line-height: 1.2;
    color: #FCF9EF;
    margin: 0 0 16px;
    font-weight: 600
}

.abt_pg .val_card_txt {
    font-size: 15px;
    line-height: 1.6;
    color: #fcf9efcc;
    margin: 0
}

.abt_pg .team_showcase {
    padding: 96px 16px;
    background: #fff;
    position: relative
}

.abt_pg .team_divider {
    width: 280px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #E52D3E 50%, transparent 100%);
    margin: 0 auto 96px
}

.abt_pg .team_layout {
    max-width: 1366px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px
}

.abt_pg .team_content_side {
    display: flex;
    flex-direction: column;
    gap: 32px
}

.abt_pg .team_h {
    font-size: 43px;
    line-height: 1.2;
    color: #E52D3E;
    margin: 0 0 16px;
    font-weight: 700
}

.abt_pg .team_desc {
    font-size: 18px;
    line-height: 1.9;
    color: #2a2a2a;
    margin: 0 0 32px;
    max-width: 620px
}

.abt_pg .team_desc_two {
    font-size: 18px;
    line-height: 1.9;
    color: #2a2a2a;
    margin: 0;
    max-width: 620px
}

.abt_pg .team_member_mini {
    background: linear-gradient(135deg, #e52d3e0d 0%, #18553c0d 100%);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #e52d3e26;
    box-shadow: inset 0 1px 4px 0 #e52d3e0d;
    max-width: 480px
}

.abt_pg .team_member_inner {
    display: flex;
    gap: 16px;
    align-items: center
}

.abt_pg .team_portrait_box {
    width: 96px;
    height: 120px;
    border-radius: 46px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 18px 0 #18553c17
}

.abt_pg .team_portrait_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block
}

.abt_pg .team_member_info {
    flex: 1
}

.abt_pg .team_name {
    font-size: 23px;
    line-height: 1.2;
    color: #18553C;
    margin: 0 0 8px;
    font-weight: 600
}

.abt_pg .team_role {
    font-size: 15px;
    line-height: 1.6;
    color: #E52D3E;
    margin: 0 0 8px;
    font-weight: 500
}

.abt_pg .team_quote {
    font-size: 15px;
    line-height: 1.6;
    color: #2a2a2a;
    margin: 0;
    font-style: italic
}

.abt_pg .team_visual_side {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px
}

.abt_pg .team_img_box {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 4px 18px 0 #18553c17;
    transition: transform .6s cubic-bezier(0.22, 1, 0.36, 1)
}

.abt_pg .team_img_box:hover {
    transform: perspective(1000px) rotateX(2deg) rotateY(-2deg) translateZ(20px)
}

.abt_pg .team_img_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

@media (min-width: 768px) {
    .abt_pg .intro_grad {
        padding: 96px 32px
    }

    .abt_pg .intro_num {
        font-size: 72px
    }

    .abt_pg .intro_heading {
        font-size: 43px
    }

    .abt_pg .story_zone {
        padding: 96px 32px
    }

    .abt_pg .story_inner {
        flex-direction: row;
        gap: 48px;
        align-items: flex-start
    }

    .abt_pg .story_media_group {
        flex: 0 0 420px;
        position: sticky;
        top: 32px
    }

    .abt_pg .story_txt_area {
        flex: 1;
        margin: 0
    }

    .abt_pg .values_band {
        padding: 96px 32px
    }

    .abt_pg .values_grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .abt_pg .team_showcase {
        padding: 96px 32px
    }

    .abt_pg .team_layout {
        flex-direction: row;
        gap: 48px
    }

    .abt_pg .team_content_side {
        flex: 1
    }

    .abt_pg .team_visual_side {
        flex: 0 0 480px;
        grid-template-columns: 1fr 1fr
    }

    .abt_pg .team_img_box:first-child {
        grid-column: 1 / -1
    }
}

@media (min-width: 1280px) {
    .abt_pg .intro_grad {
        padding: 96px 48px
    }

    .abt_pg .story_zone {
        padding: 96px 48px
    }

    .abt_pg .story_media_group {
        flex: 0 0 520px
    }

    .abt_pg .values_band {
        padding: 96px 48px
    }

    .abt_pg .values_grid {
        grid-template-columns: repeat(4, 1fr)
    }

    .abt_pg .team_showcase {
        padding: 96px 48px
    }

    .abt_pg .team_visual_side {
        flex: 0 0 580px
    }
}

.expert_view {
    background: #FCF9EF;
    color: #2a2a2a;
    overflow-x: clip
}

.expert_view .intro_spread {
    max-width: 1366px;
    margin: 0 auto;
    padding: 96px 32px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative
}

.expert_view .intro_text h1 {
    font-size: 72px;
    line-height: 1.2;
    color: #E52D3E;
    margin: 0 0 32px;
    font-weight: 700
}

.expert_view .intro_text .tagline {
    font-size: 23px;
    line-height: 1.6;
    color: #18553C;
    margin: 0;
    font-weight: 400
}

.expert_view .intro_visual {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 9px 36px 0 #e52d3e1c
}

.expert_view .intro_visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.expert_view .intro_visual::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, #e52d3ea6 100%);
    pointer-events: none
}

.expert_view .profile_showcase {
    background: #fff;
    padding: 96px 32px;
    position: relative;
    overflow: hidden
}

.expert_view .profile_showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(225deg, #e52d3e08 0%, transparent 100%);
    animation: breath_overlay 6.8s cubic-bezier(0.22, 1, 0.36, 1) infinite alternate;
    pointer-events: none
}

@keyframes breath_overlay {
    0% {
        opacity: .3
    }

    100% {
        opacity: 1
    }
}

.expert_view .profile_inner {
    max-width: 1366px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 96px;
    align-items: start
}

.expert_view .expert_card {
    background: #FCF9EF;
    border-radius: 16px;
    padding: 32px;
    box-shadow: inset 0 1px 4px 0 #18553c0d;
    position: relative
}

.expert_view .expert_card::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 60px;
    height: 60px;
    background: #E52D3E;
    transform: rotate(45deg);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    opacity: .85
}

.expert_view .expert_name {
    font-size: 23px;
    line-height: 1.2;
    color: #18553C;
    margin: 0 0 8px;
    font-weight: 700
}

.expert_view .expert_title {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin: 0 0 16px;
    font-weight: 400
}

.expert_view .expert_bio {
    font-size: 15px;
    line-height: 1.9;
    color: #3a3a3a;
    margin: 0
}

.expert_view .profile_content h2 {
    font-size: 43px;
    line-height: 1.2;
    color: #E52D3E;
    margin: 0 0 48px;
    font-weight: 700
}

.expert_view .insight_block {
    margin: 0 0 32px
}

.expert_view .insight_block:last-child {
    margin: 0
}

.expert_view .insight_block h3 {
    font-size: 23px;
    line-height: 1.2;
    color: #18553C;
    margin: 0 0 16px;
    font-weight: 700
}

.expert_view .insight_block p {
    font-size: 18px;
    line-height: 1.9;
    color: #3a3a3a;
    margin: 0 0 16px;
    max-width: 720px
}

.expert_view .insight_block p:last-child {
    margin: 0
}

.expert_view .stat_wall {
    background: #E52D3E;
    padding: 96px 32px;
    position: relative
}

.expert_view .stat_wall::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: 30px;
    background-image: radial-gradient(circle at 30px 0, transparent 30px, #E52D3E 30px);
    background-size: 60px 30px;
    background-position: 0 0
}

.expert_view .stat_container {
    max-width: 1366px;
    margin: 0 auto
}

.expert_view .stat_container h2 {
    font-size: 43px;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 48px;
    font-weight: 300;
    text-align: center
}

.expert_view .metrics_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px
}

.expert_view .metric_unit {
    text-align: center;
    position: relative
}

.expert_view .metric_value {
    font-size: 72px;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 8px;
    font-weight: 700;
    display: block;
    transition: transform .55s cubic-bezier(0.22, 1, 0.36, 1)
}

.expert_view .metric_unit:hover .metric_value {
    transform: scale(1.08)
}

.expert_view .metric_label {
    font-size: 18px;
    line-height: 1.6;
    color: #ffffffe6;
    margin: 0;
    font-weight: 400;
    letter-spacing: .03em
}

.expert_view .quote_extract {
    background: #fff;
    padding: 96px 32px;
    position: relative
}

.expert_view .quote_inner {
    max-width: 1366px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 96px;
    align-items: center
}

.expert_view .quote_main h2 {
    font-size: 43px;
    line-height: 1.2;
    color: #18553C;
    margin: 0 0 32px;
    font-weight: 700
}

.expert_view .quote_main p {
    font-size: 18px;
    line-height: 1.9;
    color: #3a3a3a;
    margin: 0 0 16px;
    max-width: 680px
}

.expert_view .quote_main p:last-child {
    margin: 0
}

.expert_view .pulled_quote {
    background: radial-gradient(circle at bottom right, #18553c14 0%, transparent 70%);
    border-radius: 30px;
    padding: 48px;
    position: relative;
    box-shadow: 0 4px 18px 0 #18553c17
}

.expert_view .pulled_quote::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 16px;
    width: 48px;
    height: 48px;
    background: #E52D3E;
    border-radius: 2px;
    opacity: .15
}

.expert_view .quote_text {
    font-size: 23px;
    line-height: 1.6;
    color: #18553C;
    margin: 0 0 16px;
    font-weight: 700;
    font-style: italic;
    position: relative
}

.expert_view .quote_attribution {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin: 0;
    font-weight: 400
}

@media (max-width: 1280px) {
    .expert_view .intro_spread {
        grid-template-columns: 1fr;
        padding: 48px 32px;
        gap: 32px
    }

    .expert_view .intro_text h1 {
        font-size: 43px
    }

    .expert_view .intro_text .tagline {
        font-size: 18px
    }

    .expert_view .profile_inner {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .expert_view .profile_content h2 {
        font-size: 23px;
        margin-bottom: 32px
    }

    .expert_view .stat_wall {
        padding: 48px 32px
    }

    .expert_view .stat_container h2 {
        font-size: 23px
    }

    .expert_view .metrics_grid {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .expert_view .metric_value {
        font-size: 43px
    }

    .expert_view .quote_inner {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .expert_view .quote_main h2 {
        font-size: 23px
    }
}

@media (max-width: 768px) {
    .expert_view .intro_spread {
        padding: 32px 16px;
        gap: 16px
    }

    .expert_view .intro_text h1 {
        font-size: 23px;
        margin-bottom: 16px
    }

    .expert_view .intro_text .tagline {
        font-size: 15px
    }

    .expert_view .intro_visual {
        border-radius: 16px
    }

    .expert_view .profile_showcase {
        padding: 48px 16px
    }

    .expert_view .profile_inner {
        gap: 32px
    }

    .expert_view .expert_card {
        padding: 16px
    }

    .expert_view .expert_name {
        font-size: 18px
    }

    .expert_view .profile_content h2 {
        font-size: 18px;
        margin-bottom: 16px
    }

    .expert_view .insight_block h3 {
        font-size: 18px
    }

    .expert_view .insight_block p {
        font-size: 15px
    }

    .expert_view .stat_wall {
        padding: 32px 16px
    }

    .expert_view .stat_container h2 {
        font-size: 18px;
        margin-bottom: 32px
    }

    .expert_view .metrics_grid {
        gap: 16px
    }

    .expert_view .metric_value {
        font-size: 23px
    }

    .expert_view .metric_label {
        font-size: 15px
    }

    .expert_view .quote_extract {
        padding: 48px 16px
    }

    .expert_view .quote_inner {
        gap: 32px
    }

    .expert_view .quote_main h2 {
        font-size: 18px;
        margin-bottom: 16px
    }

    .expert_view .quote_main p {
        font-size: 15px
    }

    .expert_view .pulled_quote {
        padding: 32px;
        border-radius: 16px
    }

    .expert_view .quote_text {
        font-size: 18px
    }
}

.lrn_prog {
    max-width: 1366px;
    margin: 0 auto;
    background: #FFF;
    color: #2A2A2A;
    overflow-x: clip
}

.lrn_prog .eyebrow_zone {
    padding: 96px 48px 48px;
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: flex-start;
    overflow: hidden
}

.lrn_prog .eyebrow_zone::before {
    content: '';
    position: absolute;
    top: 96px;
    left: 48px;
    width: 240px;
    height: 240px;
    background-image: radial-gradient(circle, #2A2A2A 1px, transparent 1px);
    background-size: 16px 16px;
    opacity: .08;
    pointer-events: none;
    z-index: 0
}

.lrn_prog .text_col {
    flex: 1 1 65%;
    position: relative;
    z-index: 1
}

.lrn_prog .img_col {
    flex: 0 0 32%;
    position: relative;
    z-index: 1
}

.lrn_prog .small_label {
    font-size: 15px;
    line-height: 1.6;
    color: #E52D3E;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin: 0 0 16px;
    font-weight: 600
}

.lrn_prog .big_heading {
    font-size: 72px;
    line-height: 1.2;
    color: #18553C;
    margin: 0;
    font-weight: 700
}

.lrn_prog .img_with_fade {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1.3;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 9px 36px 0 #e52d3e1c
}

.lrn_prog .img_with_fade img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block
}

.lrn_prog .img_with_fade::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, #18553cbf, transparent);
    pointer-events: none
}

.lrn_prog .timeline_wrap {
    padding: 96px 48px;
    background: #FCF9EF;
    position: relative
}

.lrn_prog .timeline_wrap::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 8px;
    height: 100%;
    background: linear-gradient(180deg, #E52D3E 0%, #18553C 100%)
}

.lrn_prog .timeline_intro {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center
}

.lrn_prog .timeline_intro h2 {
    font-size: 43px;
    line-height: 1.2;
    color: #18553C;
    margin: 0 0 16px;
    font-weight: 600
}

.lrn_prog .timeline_intro p {
    font-size: 18px;
    line-height: 1.6;
    color: #2A2A2A;
    margin: 0
}

.lrn_prog .timeline_groups {
    display: flex;
    flex-direction: column;
    gap: 48px;
    max-width: 980px;
    margin: 0 auto
}

.lrn_prog .period_group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 0;
    transform: translateY(32px);
    animation: rise_appear .6s cubic-bezier(0.22, 1, 0.36, 1) forwards
}

.lrn_prog .period_group:nth-child(1) {
    animation-delay: .1s
}

.lrn_prog .period_group:nth-child(2) {
    animation-delay: .25s
}

.lrn_prog .period_group:nth-child(3) {
    animation-delay: .4s
}

.lrn_prog .period_group:nth-child(4) {
    animation-delay: .55s
}

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

.lrn_prog .period_label {
    font-size: 15px;
    line-height: 1.6;
    color: #E52D3E;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin: 0;
    padding: 0 0 8px;
    border-bottom: 2px solid #e52d3e33
}

.lrn_prog .events_row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px
}

.lrn_prog .event_card {
    background: #FFF;
    padding: 32px;
    border-radius: 16px;
    box-shadow: inset 0 1px 4px 0 #18553c0d;
    position: relative;
    transition: transform .5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .5s ease-in-out
}

.lrn_prog .event_card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 18px 0 #18553c17
}

.lrn_prog .event_card h3 {
    font-size: 23px;
    line-height: 1.2;
    color: #18553C;
    margin: 0 0 8px;
    font-weight: 700
}

.lrn_prog .event_card p {
    font-size: 15px;
    line-height: 1.6;
    color: #2A2A2A;
    margin: 0
}

.lrn_prog .metric_zone {
    padding: 96px 48px;
    background: #FFF;
    position: relative;
    overflow: hidden
}

.lrn_prog .metric_zone::before {
    content: '';
    position: absolute;
    bottom: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle at bottom right, #e52d3e14, transparent 70%);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    pointer-events: none
}

.lrn_prog .metric_inner {
    max-width: 1140px;
    margin: 0 auto
}

.lrn_prog .metric_heading {
    font-size: 43px;
    line-height: 1.2;
    color: #E52D3E;
    margin: 0 0 48px;
    font-weight: 700;
    text-align: center;
    opacity: 0;
    transform: translateY(32px);
    animation: rise_appear .55s cubic-bezier(0.22, 1, 0.36, 1) .15s forwards
}

.lrn_prog .metric_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px
}

.lrn_prog .metric_item {
    background: linear-gradient(135deg, #fcf9ef99, #ffffff4d);
    padding: 48px 32px;
    border-radius: 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 18px 0 #e52d3e17;
    transition: transform .6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .5s ease-in-out;
    opacity: 0;
    transform: translateY(32px);
    animation: rise_appear .5s cubic-bezier(0.22, 1, 0.36, 1) forwards
}

.lrn_prog .metric_item:nth-child(1) {
    animation-delay: .2s
}

.lrn_prog .metric_item:nth-child(2) {
    animation-delay: .35s
}

.lrn_prog .metric_item:nth-child(3) {
    animation-delay: .5s
}

.lrn_prog .metric_item:hover {
    transform: translateY(-8px);
    box-shadow: 0 9px 36px 0 #e52d3e1c
}

.lrn_prog .metric_number {
    font-size: 72px;
    line-height: 1.2;
    color: #18553C;
    font-weight: 700;
    margin: 0 0 8px;
    display: block
}

.lrn_prog .metric_desc {
    font-size: 18px;
    line-height: 1.6;
    color: #2A2A2A;
    margin: 0;
    font-weight: 500
}

.lrn_prog .metric_counter {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: #E52D3E;
    color: #FFF;
    border-radius: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    line-height: 1;
    font-weight: 700
}

.lrn_prog .reveal_zone {
    padding: 96px 48px;
    background: #FCF9EF;
    position: relative
}

.lrn_prog .reveal_zone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 100%;
    background: linear-gradient(180deg, #18553C 0%, #E52D3E 100%)
}

.lrn_prog .reveal_inner {
    max-width: 1140px;
    margin: 0 auto
}

.lrn_prog .reveal_header {
    text-align: center;
    margin: 0 0 48px
}

.lrn_prog .reveal_header h2 {
    font-size: 43px;
    line-height: 1.2;
    color: #18553C;
    margin: 0 0 16px;
    font-weight: 300
}

.lrn_prog .reveal_header p {
    font-size: 18px;
    line-height: 1.6;
    color: #2A2A2A;
    margin: 0;
    max-width: 680px;
    margin: 0 auto
}

.lrn_prog .reveal_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px
}

.lrn_prog .flip_card {
    perspective: 1200px;
    height: 380px;
    opacity: 0;
    transform: translateY(32px);
    animation: rise_appear .65s cubic-bezier(0.22, 1, 0.36, 1) forwards
}

.lrn_prog .flip_card:nth-child(1) {
    animation-delay: .1s
}

.lrn_prog .flip_card:nth-child(2) {
    animation-delay: .25s
}

.lrn_prog .flip_card:nth-child(3) {
    animation-delay: .4s
}

.lrn_prog .flip_inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform .7s cubic-bezier(0.22, 1, 0.36, 1);
    transform-style: preserve-3d
}

.lrn_prog .flip_card:hover .flip_inner {
    transform: rotateY(180deg)
}

.lrn_prog .flip_front,
.lrn_prog .flip_back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 16px;
    padding: 48px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 18px 0 #18553c17
}

.lrn_prog .flip_front {
    background: #FFF
}

.lrn_prog .flip_back {
    background: linear-gradient(135deg, #18553C, #1a6647);
    color: #FFF;
    transform: rotateY(180deg)
}

.lrn_prog .flip_front h3 {
    font-size: 23px;
    line-height: 1.2;
    color: #E52D3E;
    margin: 0 0 16px;
    font-weight: 700
}

.lrn_prog .flip_front p {
    font-size: 15px;
    line-height: 1.6;
    color: #2A2A2A;
    margin: 0
}

.lrn_prog .flip_back h4 {
    font-size: 18px;
    line-height: 1.6;
    color: #FCF9EF;
    margin: 0 0 16px;
    font-weight: 600
}

.lrn_prog .flip_back p {
    font-size: 15px;
    line-height: 1.6;
    color: #fcf9efe6;
    margin: 0
}

.lrn_prog .flip_icon {
    width: 64px;
    height: 64px;
    margin: 0 0 16px;
    background: linear-gradient(135deg, #e52d3e1a, #18553c1a);
    border-radius: 46px;
    display: flex;
    align-items: center;
    justify-content: center
}

.lrn_prog .flip_icon svg {
    width: 32px;
    height: 32px;
    fill: #E52D3E
}

.lrn_prog .divider_curve {
    width: 100%;
    height: 80px;
    overflow: hidden;
    position: relative;
    background: #FCF9EF
}

.lrn_prog .divider_curve svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    display: block
}

.lrn_prog .expert_zone {
    padding: 96px 48px;
    background: #FFF;
    position: relative
}

.lrn_prog .expert_container {
    max-width: 980px;
    margin: 0 auto
}

.lrn_prog .expert_intro {
    margin: 0 0 48px
}

.lrn_prog .expert_intro h2 {
    font-size: 43px;
    line-height: 1.2;
    color: #E52D3E;
    margin: 0 0 16px;
    font-weight: 700
}

.lrn_prog .expert_intro p {
    font-size: 18px;
    line-height: 1.6;
    color: #2A2A2A;
    margin: 0;
    max-width: 640px
}

.lrn_prog .expert_list {
    display: flex;
    flex-direction: column;
    gap: 32px
}

.lrn_prog .expert_card {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: center;
    background: linear-gradient(135deg, #fcf9ef80, #ffffff4d);
    padding: 32px;
    border-radius: 30px;
    box-shadow: 0 4px 18px 0 #e52d3e17;
    transition: transform .55s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .6s ease-in-out;
    opacity: 0;
    transform: translateY(32px);
    animation: rise_appear .6s cubic-bezier(0.22, 1, 0.36, 1) forwards
}

.lrn_prog .expert_card:nth-child(1) {
    animation-delay: .15s
}

.lrn_prog .expert_card:nth-child(2) {
    animation-delay: .3s
}

.lrn_prog .expert_card:nth-child(3) {
    animation-delay: .45s
}

.lrn_prog .expert_card:nth-child(4) {
    animation-delay: .6s
}

.lrn_prog .expert_card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 9px 36px 0 #e52d3e1c
}

.lrn_prog .expert_portrait {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 18px 0 #18553c17
}

.lrn_prog .expert_portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block
}

.lrn_prog .expert_info {
    flex: 1
}

.lrn_prog .expert_info h3 {
    font-size: 23px;
    line-height: 1.2;
    color: #18553C;
    margin: 0 0 8px;
    font-weight: 700
}

.lrn_prog .expert_role {
    font-size: 15px;
    line-height: 1.6;
    color: #E52D3E;
    margin: 0 0 8px;
    font-weight: 600;
    letter-spacing: .05em
}

.lrn_prog .expert_info p {
    font-size: 15px;
    line-height: 1.6;
    color: #2A2A2A;
    margin: 0
}

@media (max-width: 1280px) {
    .lrn_prog .big_heading {
        font-size: 43px
    }

    .lrn_prog .eyebrow_zone {
        padding: 48px 32px 32px;
        gap: 32px
    }

    .lrn_prog .text_col {
        flex: 1 1 60%
    }

    .lrn_prog .img_col {
        flex: 0 0 36%
    }

    .lrn_prog .timeline_wrap,
    .lrn_prog .metric_zone,
    .lrn_prog .reveal_zone,
    .lrn_prog .expert_zone {
        padding: 48px 32px
    }

    .lrn_prog .metric_number {
        font-size: 43px
    }
}

@media (max-width: 768px) {
    .lrn_prog .eyebrow_zone {
        flex-direction: column;
        padding: 32px 16px 16px;
        gap: 32px
    }

    .lrn_prog .text_col,
    .lrn_prog .img_col {
        flex: 1 1 100%
    }

    .lrn_prog .big_heading {
        font-size: 23px
    }

    .lrn_prog .timeline_intro h2,
    .lrn_prog .metric_heading,
    .lrn_prog .reveal_header h2,
    .lrn_prog .expert_intro h2 {
        font-size: 23px
    }

    .lrn_prog .timeline_wrap,
    .lrn_prog .metric_zone,
    .lrn_prog .reveal_zone,
    .lrn_prog .expert_zone {
        padding: 32px 16px
    }

    .lrn_prog .timeline_groups {
        gap: 32px
    }

    .lrn_prog .events_row {
        grid-template-columns: 1fr
    }

    .lrn_prog .metric_grid {
        grid-template-columns: 1fr;
        gap: 16px
    }

    .lrn_prog .metric_item {
        padding: 32px 16px
    }

    .lrn_prog .metric_number {
        font-size: 43px
    }

    .lrn_prog .reveal_grid {
        grid-template-columns: 1fr
    }

    .lrn_prog .flip_card {
        height: 320px
    }

    .lrn_prog .expert_card {
        flex-direction: column;
        text-align: center;
        gap: 16px
    }

    .lrn_prog .expert_portrait {
        width: 96px;
        height: 96px
    }
}

.confirmation_arrived {
    background: linear-gradient(135deg, #FCF9EF 0%, #fff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 16px
}

.confirmation_arrived .success_container {
    max-width: 680px;
    width: 100%;
    background: #fff;
    border-radius: 30px;
    padding: 96px 48px;
    text-align: center;
    box-shadow: 0 9px 36px 0 #e52d3e1c
}

.confirmation_arrived .icon_wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 48px;
    background: radial-gradient(circle at bottom right, #18553C 0%, transparent 100%);
    border-radius: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

.confirmation_arrived .icon_wrapper svg {
    width: 64px;
    height: 64px;
    stroke: #18553C;
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round
}

.confirmation_arrived .primary_heading {
    font-size: 43px;
    line-height: 1.2;
    color: #E52D3E;
    margin: 0 0 32px;
    font-weight: 700
}

.confirmation_arrived .description_text {
    font-size: 18px;
    line-height: 1.6;
    color: #2a2a2a;
    margin: 0 0 48px
}

.confirmation_arrived .info_block {
    background: #FCF9EF;
    border-radius: 16px;
    padding: 32px;
    margin: 0 0 48px;
    text-align: left
}

.confirmation_arrived .info_block .info_heading {
    font-size: 18px;
    line-height: 1.2;
    color: #18553C;
    margin: 0 0 16px;
    font-weight: 600
}

.confirmation_arrived .info_block .info_list {
    list-style: none;
    padding: 0;
    margin: 0
}

.confirmation_arrived .info_block .info_list li {
    font-size: 15px;
    line-height: 1.9;
    color: #3a3a3a;
    padding: 0 0 0 32px;
    margin: 0 0 8px;
    position: relative
}

.confirmation_arrived .info_block .info_list li:last-child {
    margin: 0
}

.confirmation_arrived .info_block .info_list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #E52D3E
}

.confirmation_arrived .action_group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap
}

.confirmation_arrived .primary_action {
    background: #E52D3E;
    color: #fff;
    font-size: 18px;
    line-height: 1.6;
    padding: 16px 48px;
    border: 2px solid #E52D3E;
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: border-color .5s cubic-bezier(0.22, 1, 0.36, 1), background .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.confirmation_arrived .primary_action:hover {
    border-color: #18553C;
    background: #c72533
}

.confirmation_arrived .secondary_action {
    background: transparent;
    color: #18553C;
    font-size: 18px;
    line-height: 1.6;
    padding: 16px 48px;
    border: 2px solid #18553C;
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: border-color .6s ease-in-out, color .6s ease-in-out
}

.confirmation_arrived .secondary_action:hover {
    border-color: #E52D3E;
    color: #E52D3E
}

.confirmation_arrived .contact_note {
    font-size: 15px;
    line-height: 1.6;
    color: #5a5a5a;
    margin: 48px 0 0
}

.confirmation_arrived .contact_note a {
    color: #E52D3E;
    text-decoration: none;
    position: relative;
    transition: color .4s ease-in-out
}

.confirmation_arrived .contact_note a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #E52D3E;
    transition: width .5s cubic-bezier(0.22, 1, 0.36, 1), left .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.confirmation_arrived .contact_note a:hover::after {
    width: 100%;
    left: 0
}

@media (max-width: 768px) {
    .confirmation_arrived .success_container {
        padding: 48px 32px
    }

    .confirmation_arrived .icon_wrapper {
        width: 96px;
        height: 96px;
        margin: 0 auto 32px
    }

    .confirmation_arrived .icon_wrapper svg {
        width: 48px;
        height: 48px
    }

    .confirmation_arrived .primary_heading {
        font-size: 23px
    }

    .confirmation_arrived .description_text {
        font-size: 15px
    }

    .confirmation_arrived .info_block {
        padding: 16px
    }

    .confirmation_arrived .action_group {
        flex-direction: column
    }

    .confirmation_arrived .primary_action,
    .confirmation_arrived .secondary_action {
        width: 100%
    }
}