:root {
    --primary-color: #209D8D;
    --primary-hover: #177D70;
    --text-dark: #102A36;
    --text-body: #4A5B66;
    --bg-light: #F8FBFC;
    --white: #FFFFFF;
    --border-color: #E2E8F0;
    --font-main: 'Plus Jakarta Sans', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-main); color: var(--text-dark); line-height: 1.6; background-color: var(--bg-light); overflow-x: hidden; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 40px; }
h1 { font-size: 4.5rem; line-height: 1.1; font-weight: 700; margin-bottom: 25px; color: var(--text-dark); }
.highlight { color: var(--primary-color); }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 24px; font-size: 1rem; font-weight: 600; border-radius: 8px; text-decoration: none; transition: all 0.3s ease; gap: 8px; cursor: pointer; }
.btn-primary { background-color: var(--primary-color); color: var(--white); border: 2px solid var(--primary-color); }
.btn-primary:hover { background-color: var(--primary-hover); border-color: var(--primary-hover); }
.btn-outline { background-color: transparent; color: var(--text-dark); border: 1px solid var(--border-color); }
.btn-outline:hover { border-color: var(--text-dark); }
.btn-large { padding: 14px 14px 14px 32px; font-size: 1.125rem; }
.btn-pill { border-radius: 50px; display: inline-flex; justify-content: space-between; align-items: center; gap: 20px; }
.arrow-circle { background-color: var(--white); color: var(--primary-color); border-radius: 50%; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.main-header { background-color: transparent; padding: 24px 0; position: relative; z-index: 10; border-bottom: 1px solid rgba(0,0,0,0.05); }
.header-container { display: flex; justify-content: space-between; align-items: center; }
.logo-img { height: 55px; width: auto; object-fit: contain; }
.desktop-nav ul { display: flex; list-style: none; gap: 32px; }
.desktop-nav a { text-decoration: none; color: var(--text-dark); font-weight: 500; font-size: 1rem; display: flex; align-items: center; gap: 4px; transition: color 0.3s ease; }
.desktop-nav a:hover { color: var(--primary-color); }
.header-actions { display: flex; gap: 16px; }

/* Hero Section */
.hero-section { padding: 60px 0 100px 0; position: relative; overflow: visible; }
.hero-container { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.hero-content { flex: 0 0 50%; max-width: 600px; position: relative; z-index: 2; }
.hero-subtitle { font-size: 1.25rem; color: var(--text-body); margin-bottom: 40px; max-width: 90%; }
.hero-features { display: flex; gap: 30px; margin-bottom: 30px; padding-bottom: 30px; border-bottom: 1px solid var(--border-color); }
.feature-item { display: flex; align-items: center; gap: 12px; }
.icon-circle { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--primary-color); color: var(--primary-color); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.feature-item span { font-size: 0.95rem; font-weight: 600; line-height: 1.3; }
.hero-description { font-size: 1.1rem; color: var(--text-body); margin-bottom: 40px; }
.hero-visual { flex: 0 0 55%; position: relative; margin-right: -100px; z-index: 1; }
.mockup-img { width: 100%; height: auto; display: block; object-fit: contain; }

/* Bottom Bar */
.bottom-bar { background-color: var(--white); padding: 40px 0; border-top: 1px solid var(--border-color); }
.bottom-bar-container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.bottom-feature { display: flex; align-items: flex-start; gap: 16px; padding-right: 20px; border-right: 1px solid var(--border-color); }
.bottom-feature:last-child { border-right: none; padding-right: 0; }
.feature-icon { font-size: 2.5rem; color: var(--primary-color); }
.text-content h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.text-content p { font-size: 0.95rem; color: var(--text-body); line-height: 1.4; }

/* Services Section (New) */
.services-section { padding: 100px 0; background-color: var(--bg-light); border-top: 1px solid var(--border-color); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 3rem; font-weight: 700; color: var(--text-dark); margin-bottom: 15px; }
.section-header p { font-size: 1.15rem; color: var(--text-body); max-width: 650px; margin: 0 auto; line-height: 1.6; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-card { background: var(--white); border: 1px solid var(--border-color); padding: 40px 35px; border-radius: 12px; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.06); border-color: var(--primary-color); }
.card-icon { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 25px; }
.service-card h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 15px; color: var(--text-dark); }
.service-card p { color: var(--text-body); margin-bottom: 25px; font-size: 1rem; line-height: 1.6; }
.btn-link { color: var(--primary-color); font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: color 0.3s; font-size: 0.95rem; }
.btn-link:hover { color: var(--primary-hover); }

/* Contact Page (New) */
.page-header { padding: 80px 0 50px; text-align: center; }
.page-header h1 { font-size: 3.5rem; margin-bottom: 15px; font-weight: 700; }
.page-header p { font-size: 1.2rem; color: var(--text-body); }
.contact-section { padding-bottom: 100px; }
.contact-container { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 60px; align-items: start; }
.contact-form { background: var(--white); padding: 50px; border-radius: 12px; border: 1px solid var(--border-color); box-shadow: 0 10px 40px rgba(0,0,0,0.03); }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 10px; font-size: 0.95rem; color: var(--text-dark); }
.form-group input, .form-group textarea { width: 100%; padding: 15px 18px; border: 1px solid var(--border-color); border-radius: 8px; font-family: var(--font-main); font-size: 1rem; background: var(--bg-light); transition: border-color 0.3s; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary-color); background: var(--white); }
.privacy-note { font-size: 0.85rem; color: var(--text-body); margin-top: 20px; display: flex; align-items: center; gap: 8px; line-height: 1.4; }
.journey-box { background: var(--text-dark); color: var(--white); padding: 40px; border-radius: 12px; margin-bottom: 30px; box-shadow: 0 15px 35px rgba(16,42,54,0.15); }
.journey-box h3 { color: var(--white); font-size: 1.6rem; margin-bottom: 15px; font-weight: 700; }
.journey-box p { color: #8C9CA6; font-size: 1rem; margin-bottom: 30px; line-height: 1.5; }
.journey-steps { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.journey-steps li { display: flex; align-items: center; gap: 15px; font-weight: 500; font-size: 1.05rem; color: var(--white); }
.step-num { color: var(--primary-color); font-size: 1.5rem; display: flex; }
.quick-contacts { display: flex; flex-direction: column; gap: 15px; }
.contact-method { display: flex; align-items: center; gap: 15px; background: var(--white); padding: 20px 25px; border-radius: 10px; border: 1px solid var(--border-color); text-decoration: none; color: var(--text-dark); font-weight: 600; font-size: 1.05rem; transition: border-color 0.3s, box-shadow 0.3s; }
.contact-method:hover { border-color: var(--primary-color); box-shadow: 0 8px 25px rgba(32,157,141,0.08); }
.contact-method i { font-size: 1.6rem; color: var(--primary-color); }

/* Responsive Adjustments */
@media (max-width: 1024px) { 
    h1 { font-size: 3.5rem; } 
    .hero-visual { margin-right: 0; } 
    .bottom-bar-container { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; } 
    .bottom-feature:nth-child(2) { border-right: none; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-container { grid-template-columns: 1fr; }
}
@media (max-width: 768px) { 
    .header-container { flex-wrap: wrap; gap: 20px; } 
    .desktop-nav { display: none; } 
    .hero-container { flex-direction: column; } 
    .hero-content, .hero-visual { flex: 0 0 100%; max-width: 100%; } 
    .hero-visual { margin-top: 40px; } 
    .hero-features { flex-direction: column; gap: 20px; } 
    .bottom-bar-container, .services-grid { grid-template-columns: 1fr; } 
    .bottom-feature { border-right: none; padding-right: 0; }
    .page-header h1 { font-size: 2.8rem; }
    .contact-form { padding: 30px 20px; }
}

/* =========================================
   Success Layout (Matches Uploaded Image)
   ========================================= */
.success-layout {
    padding: 80px 0 120px;
    background-color: var(--bg-light);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.success-layout.visible {
    opacity: 1;
    transform: translateY(0);
}

.success-header {
    text-align: center;
    margin-bottom: 60px;
}

.success-header h2 {
    font-size: 3rem;
    font-family: serif; /* Matching the elegant serif in the image */
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 500;
}

.success-header p {
    font-size: 1.1rem;
    color: var(--text-body);
    line-height: 1.6;
}

/* Horizontal Tracker */
.tracker-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.tracker-line {
    position: absolute;
    top: 30px; /* Aligned with center of icons */
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: #E2E8F0;
    z-index: 1;
}

.tracker-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.t-step {
    width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.t-icon {
    width: 60px;
    height: 60px;
    background-color: var(--bg-light); /* Matches background to cut the line */
    border: 2px solid #E2E8F0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #8C9CA6;
    margin-bottom: 15px;
}

.t-step.active .glow-green {
    border-color: #E2E8F0;
    background-color: var(--white);
    box-shadow: 0 0 25px rgba(32, 157, 141, 0.2);
    font-size: 2.2rem;
}

.t-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

.t-sub {
    font-size: 0.8rem;
    color: #209D8D;
    margin-top: 5px;
}

/* Reference Box */
.reference-box {
    background: var(--white);
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 40px;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    max-width: 1000px;
    margin: 0 auto;
}

.ref-left {
    flex: 0 0 30%;
    padding-right: 30px;
}

.ref-label {
    font-size: 0.9rem;
    color: var(--text-body);
    font-weight: 500;
}

.ref-left h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 5px 0 15px;
}

.ref-left p {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.5;
}

.ref-divider {
    width: 1px;
    height: 100px;
    background-color: #E2E8F0;
    margin: 0 20px;
}

.ref-right {
    flex: 1;
    display: flex;
    justify-content: space-between;
}

.ref-action {
    text-align: center;
    padding: 0 15px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.ref-action:hover {
    transform: translateY(-3px);
}

.ref-action i {
    font-size: 1.8rem;
    color: #8C9CA6;
    margin-bottom: 10px;
    display: block;
}

.ref-action h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.ref-action span {
    font-size: 0.8rem;
    color: var(--text-body);
}

@media (max-width: 900px) {
    .tracker-steps { overflow-x: auto; padding-bottom: 20px; justify-content: flex-start; gap: 20px; }
    .tracker-line { display: none; }
    .reference-box { flex-direction: column; text-align: center; }
    .ref-left { padding-right: 0; margin-bottom: 30px; }
    .ref-divider { width: 100%; height: 1px; margin: 0 0 30px; }
    .ref-right { flex-wrap: wrap; gap: 30px; justify-content: center; }
}

/* Select Dropdown Styling */
.custom-select-wrapper {
    position: relative;
    width: 100%;
}
.custom-select {
    width: 100%;
    padding: 15px 18px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-main);
    font-size: 1rem;
    background: var(--bg-light);
    transition: border-color 0.3s;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    color: var(--text-dark);
}
.custom-select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
}
.select-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-body);
    pointer-events: none;
}

/* =========================================
   Floating WhatsApp Button
   ========================================= */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
    color: var(--white);
}

@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }
}

/* SCROLL_PUBLIC_SITE_V1 */
.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-dark);
    background: var(--white);
    font-size: 1.45rem;
    cursor: pointer;
}

.desktop-nav a[aria-current="page"] {
    color: var(--primary-color);
}

.mobile-nav-action {
    display: none;
}

.content-hero {
    padding: 92px 0 76px;
    border-bottom: 1px solid var(--border-color);
    background: var(--white);
}

.content-hero-inner {
    max-width: 900px;
}

.content-hero h1 {
    max-width: 850px;
    margin-bottom: 22px;
    font-size: 3.6rem;
}

.content-hero p {
    max-width: 760px;
    color: var(--text-body);
    font-size: 1.18rem;
}

.page-eyebrow {
    display: block;
    margin-bottom: 14px;
    color: var(--primary-color);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.content-section {
    padding: 82px 0 96px;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.service-detail-card {
    position: relative;
    min-height: 330px;
    padding: 38px 34px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--white);
}

.service-detail-card .card-icon {
    margin-bottom: 26px;
}

.service-number {
    position: absolute;
    top: 35px;
    right: 34px;
    color: #C8D1D6;
    font-size: .9rem;
    font-weight: 700;
}

.service-detail-card h2 {
    margin-bottom: 14px;
    font-size: 1.45rem;
    line-height: 1.3;
}

.service-detail-card p {
    margin-bottom: 26px;
    color: var(--text-body);
}

.journey-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
    gap: 70px;
    align-items: start;
}

.journey-stage-list {
    position: relative;
    display: grid;
}

.journey-stage-list::before {
    content: "";
    position: absolute;
    top: 31px;
    bottom: 31px;
    left: 31px;
    width: 1px;
    background: var(--border-color);
}

.journey-stage {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 24px;
    min-height: 126px;
}

.journey-stage-marker {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border: 1px dashed #AFC0C9;
    border-radius: 50%;
    color: #81939D;
    background: var(--bg-light);
    font-weight: 800;
}

.journey-stage.is-complete .journey-stage-marker {
    border: 1px solid var(--primary-color);
    color: var(--white);
    background: var(--primary-color);
}

.journey-stage-number {
    color: #94A4AD;
    font-size: .8rem;
    font-weight: 800;
}

.journey-stage h2 {
    margin: 3px 0 6px;
    font-size: 1.18rem;
}

.journey-stage p {
    color: var(--text-body);
    font-size: .96rem;
}

.journey-support-panel {
    position: sticky;
    top: 28px;
    padding: 38px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 14px 40px rgba(16, 42, 54, .05);
}

.journey-support-panel > h2 {
    margin-bottom: 28px;
    font-size: 1.8rem;
    line-height: 1.3;
}

.journey-support-option {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 15px;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
}

.journey-support-option > span {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 800;
}

.journey-support-option h3 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.journey-support-option p {
    color: var(--text-body);
    font-size: .88rem;
}

.journey-cta {
    width: 100%;
    margin-top: 18px;
}

.about-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, .75fr);
    gap: 90px;
    align-items: start;
}

.about-layout article h2 {
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.about-layout article p {
    margin-bottom: 18px;
    color: var(--text-body);
    font-size: 1.08rem;
}

.about-values {
    display: grid;
    border-top: 1px solid var(--border-color);
}

.about-values > div {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 18px;
    padding: 25px 0;
    border-bottom: 1px solid var(--border-color);
}

.about-values i {
    color: var(--primary-color);
    font-size: 2rem;
}

.about-values strong,
.about-values small {
    display: block;
}

.about-values small {
    margin-top: 5px;
    color: var(--text-body);
    line-height: 1.5;
}

.news-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 50px;
}

.news-empty {
    min-height: 310px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 50px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--white);
}

.news-empty > i {
    margin-bottom: 24px;
    color: var(--primary-color);
    font-size: 2.6rem;
}

.news-empty h2 {
    margin-bottom: 10px;
    font-size: 1.65rem;
}

.news-empty p {
    color: var(--text-body);
}

.news-topics {
    padding: 32px;
    border-left: 3px solid var(--primary-color);
    background: var(--white);
}

.news-topics h2 {
    margin-bottom: 18px;
    font-size: 1.25rem;
}

.news-topics span {
    display: block;
    padding: 13px 0;
    border-top: 1px solid var(--border-color);
    color: var(--text-body);
    font-size: .94rem;
}

.error-page {
    min-height: 58vh;
    display: flex;
    align-items: center;
}

.error-page .btn {
    margin-top: 28px;
}

.site-footer {
    padding: 56px 0 20px;
    border-top: 1px solid var(--border-color);
    color: var(--white);
    background: var(--text-dark);
}

.site-footer-grid {
    display: grid;
    grid-template-columns: minmax(260px, 1.4fr) 1fr 1fr;
    gap: 60px;
    padding-bottom: 42px;
}

.site-footer-brand img {
    width: 190px;
    height: auto;
    padding: 10px;
    border-radius: 4px;
    background: var(--white);
}

.site-footer-brand p {
    margin-top: 18px;
    color: #B8C4CA;
}

.site-footer nav {
    display: grid;
    align-content: start;
    gap: 12px;
}

.site-footer a {
    color: #D7E0E4;
    text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
    color: #67C8BC;
}

.site-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: #9DAEB6;
    font-size: .82rem;
}

@media (max-width: 1100px) {
    .service-detail-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .journey-layout,
    .about-layout {
        gap: 44px;
    }
}

@media (max-width: 900px) {
    .content-hero {
        padding: 70px 0 58px;
    }

    .content-hero h1 {
        font-size: 3rem;
    }

    .journey-layout,
    .about-layout,
    .news-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .journey-support-panel {
        position: static;
    }

    .site-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .site-footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .main-header {
        padding: 16px 0;
        background: var(--white);
    }

    .header-container {
        position: relative;
        flex-wrap: nowrap;
    }

    .logo-img {
        height: 46px;
    }

    .mobile-menu-toggle {
        display: grid;
        place-items: center;
        margin-left: auto;
    }

    .desktop-nav {
        position: absolute;
        top: calc(100% + 16px);
        left: 20px;
        right: 20px;
        display: none;
        padding: 10px;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        background: var(--white);
        box-shadow: 0 18px 40px rgba(16, 42, 54, .12);
    }

    .desktop-nav.is-open {
        display: block;
    }

    .desktop-nav ul {
        display: grid;
        gap: 0;
    }

    .desktop-nav a {
        min-height: 46px;
        padding: 11px 12px;
        border-radius: 6px;
    }

    .desktop-nav a:hover,
    .desktop-nav a:focus-visible {
        background: var(--bg-light);
    }

    .desktop-nav .mobile-nav-action {
        display: block;
    }

    .desktop-nav .mobile-nav-action a {
        margin-top: 6px;
        justify-content: center;
        color: var(--white);
        background: var(--primary-color);
    }

    .desktop-nav .mobile-nav-action + .mobile-nav-action a {
        color: var(--text-dark);
        background: var(--white);
        border: 1px solid var(--border-color);
    }

    .header-actions {
        display: none;
    }

    .content-section {
        padding: 60px 0 72px;
    }

    .content-hero h1 {
        font-size: 2.5rem;
    }

    .service-detail-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .service-detail-card {
        min-height: 0;
    }

    .site-footer-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .site-footer-brand {
        grid-column: auto;
    }

    .site-footer-bottom {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 520px) {
    .container {
        padding-right: 20px;
        padding-left: 20px;
    }

    .content-hero {
        padding: 54px 0 46px;
    }

    .content-hero h1 {
        font-size: 2.1rem;
    }

    .content-hero p {
        font-size: 1rem;
    }

    .journey-stage {
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 17px;
        min-height: 122px;
    }

    .journey-stage-list::before {
        left: 25px;
    }

    .journey-stage-marker {
        width: 52px;
        height: 52px;
    }

    .journey-support-panel,
    .news-empty,
    .news-topics,
    .service-detail-card {
        padding: 26px 22px;
    }
}
