﻿:root {
    --hcs-font: "Plus Jakarta Sans", "Inter", sans-serif;
    --hcs-ink: #10222e;
    --hcs-body: #5f6b76;
    --hcs-muted: #8b95a1;
    --hcs-line: #e7ecf0;
    --hcs-surface: #f6f8f9;
    --hcs-teal: #009ca6;
    --hcs-teal-deep: #005f61;
    --hcs-teal-ink: #00626a;
    --hcs-teal-soft: #e5f5f6;
    --hcs-radius: 16px;
    --hcs-shadow: 0 18px 45px -18px rgba(16, 34, 46, 0.18);
    --hcs-shadow-soft: 0 8px 24px -12px rgba(16, 34, 46, 0.12);
}

.hcs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--hcs-font);
    font-weight: 700;
    font-size: 15px;
    line-height: 1;
    padding: 15px 26px;
    border-radius: 12px;
    border: 1px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.hcs-btn i {
    font-size: 14px;
}

.hcs-btn-primary {
    background: linear-gradient(120deg, var(--hcs-teal-deep) 0%, var(--hcs-teal) 100%);
    color: #fff;
    box-shadow: 0 10px 22px -10px rgba(0, 156, 166, 0.65);
}

.hcs-btn-primary:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 14px 26px -10px rgba(0, 156, 166, 0.75);
}

.hcs-btn-outline {
    background: #fff;
    color: var(--hcs-teal);
    border-color: #bfe3e6;
}

.hcs-btn-outline:hover {
    color: var(--hcs-teal-deep);
    border-color: var(--hcs-teal);
    background: var(--hcs-teal-soft);
}

.hcs-btn-ghost {
    background: transparent;
    color: var(--hcs-ink);
    padding: 15px 14px;
    font-weight: 600;
}

.hcs-btn-ghost:hover {
    color: var(--hcs-teal);
}

.hcs-btn-block {
    display: flex;
    width: 100%;
}

.hcs-btn-lg {
    padding: 18px 32px;
    font-size: 16px;
    border-radius: 14px;
}

.hcs-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #ffffff;
    border-bottom: 1px solid var(--hcs-line);
}

.hcs-header-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    height: 78px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.hcs-logo {
    flex: none;
}

.hcs-logo img {
    height: 56px;
    width: auto;
    max-width: none;
    display: block;
}

.hcs-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-right: auto;
}

.hcs-nav > a {
    font-family: var(--hcs-font);
    font-weight: 600;
    font-size: 15px;
    color: var(--hcs-ink);
    padding: 10px 14px;
    border-radius: 10px;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.hcs-nav > a:hover {
    color: var(--hcs-teal);
    background: var(--hcs-teal-soft);
}

.hcs-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.hcs-menu-btn {
    border: 1px solid var(--hcs-line);
    background: #fff;
    color: var(--hcs-ink);
    border-radius: 10px;
    padding: 12px 16px;
    font-family: var(--hcs-font);
    font-weight: 700;
}

.hcs-section {
    padding: 90px 0;
    font-family: var(--hcs-font);
}

.hcs-section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}

.hcs-kicker {
    display: inline-block;
    font-family: var(--hcs-font);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--hcs-teal);
    margin-bottom: 14px;
}

.hcs-title {
    font-family: var(--hcs-font);
    font-weight: 800;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--hcs-ink);
    margin-bottom: 14px;
}

.hcs-lead {
    font-size: 17px;
    color: var(--hcs-body);
    line-height: 1.65;
}

.hcs-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid var(--hcs-line);
    background: #fff;
    font-family: var(--hcs-font);
    font-weight: 600;
    font-size: 13px;
    color: var(--hcs-ink);
    transition: all 0.2s ease;
}

a.hcs-chip:hover {
    border-color: var(--hcs-teal);
    color: var(--hcs-teal);
}

.hcs-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--hcs-surface);
    border: 1px solid var(--hcs-line);
    font-family: var(--hcs-font);
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--hcs-ink);
}

.hcs-badge.teal {
    background: var(--hcs-teal-soft);
    border-color: transparent;
    color: var(--hcs-teal-deep);
}

.hcs-tabs {
    display: flex;
    justify-content: center;
    border-top: 1px solid var(--hcs-line);
    border-bottom: 1px solid var(--hcs-line);
    margin-bottom: 64px;
}

.hcs-tab {
    position: relative;
    font-family: var(--hcs-font);
    font-weight: 600;
    font-size: 16px;
    color: var(--hcs-ink);
    padding: 22px 8px;
    margin: 0 42px;
    transition: color 0.2s ease;
}

.hcs-tab::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    bottom: -1px;
    width: calc(100% + 64px);
    height: 3px;
    border-radius: 3px 3px 0 0;
    background: var(--hcs-teal);
    transition: transform 0.25s ease;
}

.hcs-tab:hover {
    color: var(--hcs-teal);
}

.hcs-tab.active {
    color: var(--hcs-teal);
    font-weight: 700;
}

.hcs-tab.active::after {
    transform: translateX(-50%) scaleX(1);
}

.hcs-checklist {
    list-style: none;
    margin: 0 0 30px;
    padding: 0;
}

.hcs-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 9px 0;
    font-family: var(--hcs-font);
    font-size: 16px;
    color: var(--hcs-ink);
    line-height: 1.5;
}

.hcs-checklist li i {
    flex: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin-top: -2px;
    border-radius: 8px;
    background: var(--hcs-teal-soft);
    color: var(--hcs-teal);
    font-size: 12px;
}

.hcs-pane {
    display: none;
}

.hcs-pane.active {
    display: block;
    animation: hcsFade 0.45s ease both;
}

@keyframes hcsFade {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.hcs-pane-text {
    font-size: 16.5px;
    color: var(--hcs-body);
    line-height: 1.7;
    margin: 18px 0 26px;
    max-width: 520px;
}

.hcs-figure {
    position: relative;
    padding: 34px 0 0 34px;
}

.hcs-figure::before {
    content: "";
    position: absolute;
    inset: 0 34px 34px 0;
    background: var(--hcs-surface);
    border-radius: 24px;
}

.hcs-figure img {
    position: relative;
    width: 100%;
    max-height: 430px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--hcs-shadow);
}

.hcs-card {
    background: #fff;
    border: 1px solid var(--hcs-line);
    border-radius: var(--hcs-radius);
    overflow: hidden;
    transition: all 0.25s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.hcs-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--hcs-shadow);
    border-color: transparent;
}

.hcs-card-img {
    aspect-ratio: 4 / 4.4;
    background-size: cover;
    background-position: top center;
    background-color: var(--hcs-surface);
}

.hcs-card-body {
    padding: 18px 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.hcs-card-name {
    font-family: var(--hcs-font);
    font-weight: 800;
    font-size: 19px;
    letter-spacing: -0.01em;
    color: var(--hcs-teal);
    margin: 4px 0 0;
    line-height: 1.25;
}

.hcs-card-name a {
    color: inherit;
}

.hcs-card-name a:hover {
    color: var(--hcs-teal-deep);
}

.hcs-card-role {
    font-family: var(--hcs-font);
    font-size: 13.5px;
    color: var(--hcs-body);
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hcs-card-cta {
    background: linear-gradient(150deg, var(--hcs-teal) 0%, var(--hcs-teal-deep) 85%);
    border: none;
    border-radius: var(--hcs-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 14px;
    padding: 40px 28px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.hcs-card-cta::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    top: -140px;
    right: -120px;
}

.hcs-card-cta h3 {
    font-family: var(--hcs-font);
    font-weight: 800;
    font-size: 24px;
    color: #fff;
    line-height: 1.25;
    margin: 0;
}

.hcs-card-cta span {
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--hcs-font);
    font-size: 14px;
}

.hcs-card-cta .hcs-btn {
    background: #fff;
    color: var(--hcs-teal-deep);
}

.hcs-panel {
    background: #fff;
    border: 1px solid var(--hcs-line);
    border-radius: 18px;
    box-shadow: var(--hcs-shadow-soft);
    padding: 26px;
}

.hcs-divider {
    height: 1px;
    background: var(--hcs-line);
    margin: 20px 0;
}

.sp-hero {
    background: #fff;
    font-family: var(--hcs-font);
    padding: 64px 0 56px;
}

.sp-hero-photo {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 4 / 4.3;
    border-radius: 24px;
    background-size: cover;
    background-position: top center;
    background-color: var(--hcs-surface);
    box-shadow: var(--hcs-shadow);
    margin: 0 auto;
}

.sp-hero-name {
    font-family: var(--hcs-font);
    font-weight: 800;
    font-size: clamp(32px, 4.4vw, 52px);
    letter-spacing: -0.02em;
    color: var(--hcs-teal);
    line-height: 1.08;
    margin: 16px 0 8px;
}

.sp-hero-role {
    font-size: 18px;
    color: var(--hcs-body);
    display: block;
    margin-bottom: 22px;
}

.sp-hero-resume {
    font-size: 15.5px;
    color: var(--hcs-body);
    line-height: 1.7;
    white-space: pre-line;
    max-width: 620px;
    margin-bottom: 24px;
}

.sp-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.sp-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--hcs-surface);
    border: 1px solid var(--hcs-line);
    color: var(--hcs-muted);
    transition: all 0.2s ease;
}

.sp-social a:hover {
    background: var(--hcs-teal);
    border-color: var(--hcs-teal);
    color: #fff;
}

.sp-nav {
    position: sticky;
    top: 78px;
    z-index: 40;
    background: #fff;
    border-top: 1px solid var(--hcs-line);
    border-bottom: 1px solid var(--hcs-line);
    font-family: var(--hcs-font);
}

.sp-nav-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.sp-nav .sp-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 15px;
    color: var(--hcs-ink);
    padding: 16px 20px;
    margin-right: 18px;
}

.sp-nav .sp-back i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--hcs-ink);
    color: #fff;
    font-size: 13px;
    transition: background 0.2s ease;
}

.sp-nav .sp-back:hover i {
    background: var(--hcs-teal);
}

.sp-nav .sp-tab {
    position: relative;
    font-weight: 600;
    font-size: 15.5px;
    color: var(--hcs-muted);
    padding: 20px 6px;
    margin: 0 20px;
    transition: color 0.2s ease;
}

.sp-nav .sp-tab::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    bottom: -1px;
    width: calc(100% + 44px);
    height: 3px;
    border-radius: 3px 3px 0 0;
    background: var(--hcs-teal);
    transition: transform 0.25s ease;
}

.sp-nav .sp-tab:hover {
    color: var(--hcs-teal);
}

.sp-nav .sp-tab.active {
    color: var(--hcs-teal);
    font-weight: 700;
}

.sp-nav .sp-tab.active::after {
    transform: translateX(-50%) scaleX(1);
}

.sp-body {
    font-family: var(--hcs-font);
    padding: 20px 0 90px;
    background: #fff;
}

.sp-section {
    scroll-margin-top: 160px;
    padding-top: 44px;
}

.sp-section h3 {
    font-family: var(--hcs-font);
    font-weight: 800;
    font-size: 28px;
    letter-spacing: -0.01em;
    color: var(--hcs-ink);
    margin-bottom: 18px;
}

.sp-section .sp-text {
    font-size: 16px;
    color: var(--hcs-body);
    line-height: 1.75;
    white-space: pre-line;
}

.sp-sidebar {
    position: sticky;
    top: 158px;
}

.sp-mini {
    display: flex;
    align-items: center;
    gap: 14px;
}

.sp-mini-img {
    width: 62px;
    height: 62px;
    flex: none;
    border-radius: 50%;
    background-size: cover;
    background-position: top center;
    background-color: var(--hcs-surface);
    border: 2px solid var(--hcs-teal-soft);
}

.sp-mini-name {
    font-family: var(--hcs-font);
    font-weight: 800;
    font-size: 17px;
    color: var(--hcs-teal);
    line-height: 1.25;
    margin: 0;
}

.sp-mini-role {
    font-size: 13px;
    color: var(--hcs-muted);
    display: block;
    margin-top: 2px;
}

.sp-why {
    margin-top: 22px;
    background: var(--hcs-surface);
    border: none;
    box-shadow: none;
}

.sp-why h4 {
    font-family: var(--hcs-font);
    font-weight: 800;
    font-size: 17px;
    color: var(--hcs-ink);
    margin-bottom: 14px;
}

.sp-why .hcs-checklist {
    margin: 0;
}

.sp-why .hcs-checklist li {
    font-size: 14px;
    padding: 6px 0;
}

.sp-why .hcs-checklist li i {
    width: 22px;
    height: 22px;
    font-size: 10px;
    border-radius: 6px;
    background: #fff;
}

.hcs-cta-band {
    font-family: var(--hcs-font);
    background: linear-gradient(130deg, var(--hcs-teal-deep) 0%, var(--hcs-teal) 100%);
    border-radius: 24px;
    padding: 64px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hcs-cta-band::before,
.hcs-cta-band::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
}

.hcs-cta-band::before {
    width: 380px;
    height: 380px;
    top: -180px;
    left: -120px;
}

.hcs-cta-band::after {
    width: 300px;
    height: 300px;
    bottom: -160px;
    right: -100px;
}

.hcs-cta-band .hcs-kicker {
    color: rgba(255, 255, 255, 0.8);
}

.hcs-cta-band .hcs-title {
    color: #fff;
}

.hcs-cta-band .hcs-btn-primary {
    background: #fff;
    color: var(--hcs-teal-deep);
    box-shadow: 0 12px 26px -12px rgba(0, 0, 0, 0.35);
}

.hcs-cta-band .hcs-btn-outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.55);
    color: #fff;
}

.hcs-cta-band .hcs-btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
}

.hcs-why-panel {
    font-family: var(--hcs-font);
    background: #fff;
    border: 1px solid var(--hcs-line);
    border-radius: 24px;
    box-shadow: var(--hcs-shadow-soft);
    padding: 56px;
}

.hcs-hero {
    font-family: var(--hcs-font);
    background:
        radial-gradient(900px 480px at 88% -10%, rgba(0, 156, 166, 0.14), transparent 60%),
        radial-gradient(700px 420px at -10% 110%, rgba(100, 204, 201, 0.16), transparent 60%),
        #ffffff;
    padding: 84px 0 96px;
    overflow: hidden;
}

.hcs-hero-title {
    font-family: var(--hcs-font);
    font-weight: 800;
    font-size: clamp(38px, 4.6vw, 60px);
    line-height: 1.08;
    letter-spacing: -0.025em;
    color: var(--hcs-ink);
    margin: 20px 0 18px;
}

.hcs-hero-title span {
    color: var(--hcs-teal);
}

.hcs-hero .hcs-lead {
    max-width: 540px;
    margin-bottom: 30px;
}

.hcs-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.hcs-hero-figure {
    position: relative;
    padding: 40px 0 0 40px;
}

.hcs-hero-figure::before {
    content: "";
    position: absolute;
    inset: 0 40px 40px 0;
    border-radius: 28px;
    background: var(--hcs-teal-soft);
}

.hcs-hero-figure img {
    position: relative;
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--hcs-shadow);
}

.hcs-hero-card {
    position: absolute;
    left: 0;
    bottom: 16px;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--hcs-shadow);
    border: 1px solid var(--hcs-line);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.hcs-hero-card .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--hcs-teal-soft);
    color: var(--hcs-teal);
    font-size: 18px;
}

.hcs-hero-card strong {
    display: block;
    font-weight: 800;
    font-size: 17px;
    color: var(--hcs-ink);
    line-height: 1.2;
}

.hcs-hero-card small {
    color: var(--hcs-muted);
    font-size: 12.5px;
}

.hcs-search {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--hcs-line);
    border-radius: 16px;
    box-shadow: var(--hcs-shadow-soft);
    padding: 8px;
    max-width: 560px;
}

.hcs-search .hcs-search-field {
    flex: 1;
    min-width: 0;
}

.hcs-search .hcs-btn {
    flex: none;
    padding: 14px 22px;
    border-radius: 12px;
}

.hcs-search .select2-container--bootstrap-5 {
    width: 100% !important;
    background: transparent;
    height: auto;
}

.hcs-search .select2-container--bootstrap-5 .select2-selection {
    border: none !important;
    box-shadow: none !important;
    background: transparent;
    height: 48px;
    padding-left: 14px;
    display: flex;
    align-items: center;
    font-family: var(--hcs-font);
    font-size: 15.5px;
    color: var(--hcs-ink);
}

.hcs-search .select2-selection__rendered {
    transform: none !important;
    line-height: 48px !important;
    color: var(--hcs-ink) !important;
}

.hcs-feature {
    background: #fff;
    border: 1px solid var(--hcs-line);
    border-radius: 18px;
    padding: 30px 28px;
    height: 100%;
    transition: all 0.25s ease;
}

.hcs-feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--hcs-shadow);
}

.hcs-feature .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--hcs-teal-soft);
    color: var(--hcs-teal);
    font-size: 22px;
    margin-bottom: 18px;
}

.hcs-feature h3 {
    font-family: var(--hcs-font);
    font-weight: 800;
    font-size: 19px;
    color: var(--hcs-ink);
    margin-bottom: 10px;
}

.hcs-feature p {
    font-size: 15px;
    color: var(--hcs-body);
    line-height: 1.65;
    margin: 0;
}

.hcs-step {
    position: relative;
    background: #fff;
    border: 1px solid var(--hcs-line);
    border-radius: 18px;
    padding: 26px 24px;
    height: 100%;
    transition: all 0.25s ease;
}

.hcs-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--hcs-shadow);
}

.hcs-step .num {
    font-family: var(--hcs-font);
    font-weight: 800;
    font-size: 15px;
    color: var(--hcs-teal);
    background: var(--hcs-teal-soft);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
}

.hcs-step h3 {
    font-family: var(--hcs-font);
    font-weight: 800;
    font-size: 17px;
    color: var(--hcs-ink);
    margin-bottom: 8px;
}

.hcs-step p {
    font-size: 14px;
    color: var(--hcs-body);
    line-height: 1.6;
    margin: 0;
}

.hcs-video {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--hcs-shadow);
}

.hcs-video video {
    display: block;
    width: 100%;
    height: auto;
    max-height: 560px;
    object-fit: cover;
}

.hcs-about-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 26px 0 30px;
}

.hcs-stat {
    background: var(--hcs-surface);
    border: 1px solid var(--hcs-line);
    border-radius: 14px;
    padding: 14px 20px;
    min-width: 130px;
}

.hcs-stat strong {
    display: block;
    font-family: var(--hcs-font);
    font-weight: 800;
    font-size: 22px;
    color: var(--hcs-teal);
    line-height: 1.2;
}

.hcs-stat small {
    font-size: 12.5px;
    color: var(--hcs-muted);
}

@media (max-width: 1199px) {
    .hcs-nav > a {
        padding: 10px 10px;
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .hcs-header-inner {
        height: 68px;
    }

    .hcs-hero {
        padding: 48px 0 64px;
    }

    .hcs-hero-figure {
        margin-top: 44px;
    }

    .hcs-search {
        flex-direction: column;
        align-items: stretch;
    }

    .hcs-search .hcs-btn {
        width: 100%;
    }

    .hcs-logo img {
        height: 42px;
    }

    .hcs-tab {
        margin: 0 12px;
        font-size: 14.5px;
        padding: 16px 4px;
    }

    .sp-nav .sp-tab {
        margin: 0 8px;
        font-size: 14px;
    }

    .sp-nav .sp-back {
        margin-right: 4px;
        padding: 12px 10px;
    }

    .sp-sidebar {
        position: static;
        margin-top: 44px;
    }

    .sp-hero {
        padding: 40px 0 32px;
    }

    .sp-hero-photo {
        margin-bottom: 28px;
    }

    .hcs-why-panel {
        padding: 32px 24px;
    }

    .hcs-section {
        padding: 64px 0;
    }
}
