.hc-main {
    background-color: var(--clr-light-bg);
    padding: 50px 0 70px 0;
}
.hc-container {
    width: 100%;
    max-width: var(--max-w-container);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.hc-intro {
    text-align: center;
    padding: 0 20px;
}
.hc-intro h1 {
    font-size: 30px;
    line-height: 38px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-btn-primary-txt);
    margin: 0 0 12px 0;
}
.hc-intro p {
    font-size: 14px;
    line-height: 20px;
    color: var(--clr-btn-primary-txt);
    margin: 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.hc-hero {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 5;
    overflow: hidden;
    border-radius: 0;
    background-color: #000;
}
.hc-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hc-hero-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
}
.hc-breadcrumb {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
    line-height: 20px;
}
.hc-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.15s ease;
}
.hc-breadcrumb a:hover { opacity: 0.7; }
.hc-breadcrumb-sep { margin: 0 8px; color: #aaaaaa; }
.hc-breadcrumb-current { color: #aaaaaa; }
.hc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.hc-card {
    background-color: #ffffff;
    border-radius: 5px;
    padding: 30px 24px 24px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.hc-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.hc-card-icon img { width: 60px; height: 60px; }
.hc-card-title {
    font-size: 14px;
    line-height: 20px;
    font-weight: bold;
    color: var(--clr-btn-primary-txt);
    margin: 0 0 10px 0;
}
.hc-card-desc {
    font-size: 14px;
    line-height: 20px;
    color: var(--clr-btn-primary-txt);
    margin: 0 0 20px 0;
    flex: 1;
}
.hc-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 40px;
    padding: 0 16px;
    background-color: var(--clr-accent);
    color: #ffffff;
    border: 0;
    border-radius: 5px;
    font-family: inherit;
    font-size: 14px;
    font-weight: normal;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.15s ease;
}
.hc-card-btn:hover { background-color: #0d5cd1; }
.hc-help-title {
    font-size: 18px;
    line-height: 24px;
    font-weight: bold;
    color: var(--clr-btn-primary-txt);
    margin: 0;
}
.hc-help-intro {
    font-size: 14px;
    line-height: 20px;
    color: var(--clr-btn-primary-txt);
    margin: 0 0 35px 0;
}
.hc-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 0;
}
.hc-contact-card {
    background-color: #ffffff;
    border-radius: 5px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.hc-contact-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.hc-contact-icon img { width: 30px; height: 30px; }
.hc-contact-title {
    font-size: 14px;
    line-height: 20px;
    font-weight: bold;
    color: var(--clr-btn-primary-txt);
    margin: 0 0 6px 0;
}
.hc-contact-desc {
    font-size: 14px;
    line-height: 20px;
    color: var(--clr-btn-primary-txt);
    margin: 0 0 18px 0;
    flex: 1;
}
.hc-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 40px;
    padding: 0 16px;
    background-color: var(--clr-accent);
    color: #ffffff;
    border: 0;
    border-radius: 5px;
    font-family: inherit;
    font-size: 14px;
    font-weight: normal;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.15s ease;
}
.hc-contact-btn:hover { background-color: #0d5cd1; }
.hc-content-card {
    background-color: #ffffff;
    border-radius: 5px;
    padding: 36px 40px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.hc-section-h1 {
    position: relative;
    font-size: 18px;
    line-height: 24px;
    font-weight: bold;
    color: var(--clr-btn-primary-txt);
    margin: 0 0 20px 0;
    padding-left: 14px;
}
.hc-section-h1::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 3px;
    background-color: var(--clr-accent);
    border-radius: 2px;
}
.hc-section-h2 {
    position: relative;
    font-size: 18px;
    line-height: 24px;
    font-weight: bold;
    color: var(--clr-btn-primary-txt);
    margin: 24px 0 20px 0;
    padding-left: 14px;
}
.hc-section-h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 3px;
    background-color: var(--clr-accent);
    border-radius: 2px;
}
.hc-section-h2-good {
    position: relative;
    font-size: 18px;
    line-height: 24px;
    font-weight: bold;
    color: var(--clr-btn-primary-txt);
    margin: 24px 0 20px 0;
    padding-left: 14px;
}
.hc-section-h2-good::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 3px;
    background-color: #c83a8a;
    border-radius: 2px;
}
.hc-content-card p {
    font-size: 14px;
    line-height: 20px;
    color: var(--clr-btn-primary-txt);
    margin: 0 0 14px 0;
}
.hc-content-card p:last-child { margin-bottom: 0; }
.hc-content-card ul {
    margin: 0 0 14px 0;
    padding-left: 22px;
}
.hc-content-card ul li {
    font-size: 14px;
    line-height: 20px;
    color: var(--clr-btn-primary-txt);
    margin-bottom: 8px;
}
.hc-content-card ul li:last-child { margin-bottom: 0; }
.hc-disclaimer {
    font-size: 12px;
    line-height: 18px;
    color: var(--clr-muted);
    padding: 0 8px;
    text-align: justify;
}
@media (max-width: 1050px) {
    .hc-grid { grid-template-columns: repeat(2, 1fr); }
    .hc-contact-grid { grid-template-columns: repeat(2, 1fr); }
    .hc-container { padding: 0 24px; gap: 32px; }
    .hc-content-card { padding: 28px 28px; }
    .hc-hero { aspect-ratio: 16 / 6; }
    .hc-intro h1 { font-size: 26px; line-height: 32px; }
}
@media (max-width: 750px) {
    .hc-main { padding: 30px 0 50px 0; }
    .hc-container { padding: 0 16px; gap: 24px; }
    .hc-intro h1 { font-size: 22px; line-height: 28px; }
    .hc-grid { grid-template-columns: 1fr; gap: 16px; }
    .hc-contact-grid { grid-template-columns: 1fr; gap: 16px; }
    .hc-card { padding: 24px 20px 20px 20px; }
    .hc-content-card { padding: 24px 20px; }
    .hc-hero { aspect-ratio: 16 / 9; }
    .hc-hero-caption { font-size: 14px; line-height: 20px; padding: 10px 14px; }
    .hc-breadcrumb { font-size: 14px; line-height: 20px; padding: 10px 14px; }
    .hc-breadcrumb-sep { margin: 0 5px; }
}

.hc-section p a li a,.hc-content-card p a,.hc-content-card li a{color:var(--clr-accent);text-decoration:underline}
.hc-section p a:hover li a:hover,.hc-content-card p a:hover,.hc-content-card li a:hover p a:visited li a:visited,.hc-content-card p a:visited,.hc-content-card li a:visited p a:focus li a:focus,.hc-content-card p a:focus,.hc-content-card li a:focus p a:active li a:active,.hc-content-card p a:active,.hc-content-card li a:active{color:var(--clr-accent);text-decoration:underline}
