/* Combined CSS - style.css + hero-image-fix.css + feature-fix.css */
/* Optimized for performance and reduced file size */

/* Global Styles */
:root {
    --primary-color: #0ba29a;
    --secondary-color: #E83428;
    --accent-color: #fc6c85;
    --text-color: #333;
    --light-text: #666;
    --bg-color: #ffffff;
    --section-bg: #f9fbff;
    --card-bg: #ffffff;
    --border-color: #eef2f9;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
}

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    text-rendering: optimizeLegibility;
}

body,
button,
input,
textarea,
select {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-kerning: normal;
}

svg,
svg * {
    shape-rendering: geometricPrecision;
    text-rendering: geometricPrecision;
}

.fa,
.fas,
.far,
.fab,
.fal,
.fa-solid,
.fa-regular,
.fa-brands,
[class^="fa-"],
[class*=" fa-"] {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: geometricPrecision;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    image-rendering: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 40px 0;
}

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

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
    font-family: 'Roboto', 'Noto Sans SC', sans-serif;
    font-weight: 600;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient);
    border-radius: 3px;
}

.section-header p {
    color: var(--light-text);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: #777777;
    color: white;
    box-shadow: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: none;
}

.btn-outline {
    border: 2px solid #000;
    color: #000;
    background: transparent;
}

.btn-outline:hover {
    background-color: #009944;
    color: white;
}

.features-content .btn-outline:hover,
.contact-form .btn-outline:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #000000;
    border-color: black;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffff;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: none;
    backdrop-filter: blur(5px);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

header::before,
header::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

header::before {
    background:
        radial-gradient(circle at 14% 40%, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.08) 18%, rgba(255, 255, 255, 0) 40%),
        radial-gradient(circle at 82% 26%, rgba(145, 172, 166, 0.06) 0%, rgba(145, 172, 166, 0.025) 16%, rgba(145, 172, 166, 0) 34%);
    z-index: 0;
}

header::after {
    opacity: 0.26;
    background-image:
        linear-gradient(135deg, rgba(126, 150, 145, 0.02) 25%, transparent 25%, transparent 50%, rgba(126, 150, 145, 0.02) 50%, rgba(126, 150, 145, 0.02) 75%, transparent 75%, transparent),
        linear-gradient(0deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.01));
    background-size: 18px 18px, auto;
    background-position: 0 0, 0 0;
    z-index: 0;
}

header.scrolled {
    background: #EAF5F5;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: #ffffff;
    color: #111827;
    cursor: pointer;
    flex: 0 0 auto;
}

.nav-toggle i {
    font-size: 18px;
    line-height: 1;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
    position: relative;
    min-height: 80px;
    overflow: visible;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 0;
    height: 100%;
}

.logo-img {
    max-height: 45px;
    min-height: 38px;
    width: 180px;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: center;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: high-quality;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.logo-text {
    margin-left: 5px;
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: 'Roboto', BlinkMacSystemFont, 'Segoe UI', Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--text-color);
    line-height: 1.2;
}

.logo-url {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 400;
    line-height: 0.9;
    font-style: italic;
}

.logo h1 {
    font-size: 2.0rem;
    color: #009944;
    font-weight: 700;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: 0;
    padding-right: 20px;
}

nav ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    position: relative;
}

nav ul li {
    margin-left: 30px;
    position: relative;
}

nav ul li a {
    color: var(--text-color);
    font-weight: 400;
    position: relative;
    font-size: 1rem;
    font-family: 'Roboto', 'Noto Sans SC', sans-serif;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #CF1322;
    transition: width 0.3s ease;
}

nav ul li a:hover {
    color: #009944;
}

nav ul li a:hover::after {
    width: 100%;
}

header nav li.dropdown > a.nav-link[data-lang-key="services"],
header nav li.dropdown > a.nav-link[data-lang-key="services"]:visited,
header nav li.dropdown > a.nav-link[data-lang-key="services"]:focus,
header nav li.dropdown > a.nav-link[data-lang-key="services"]:focus-visible,
header nav li.dropdown > a.nav-link[data-lang-key="services"]:active,
header nav li.dropdown.open > a.nav-link[data-lang-key="services"] {
    color: #000000 !important;
    font-weight: 700 !important;
}

@media (max-width: 768px) {
    header {
        padding: 12px 0;
    }

    header .container {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-areas: "logo toggle" "search lang" "nav nav";
        gap: 10px;
        align-items: center;
        flex-wrap: nowrap;
    }

    .logo {
        grid-area: logo;
        min-height: 44px;
    }

    .logo-img {
        width: 150px;
        min-height: 32px;
    }

    .nav-toggle {
        display: inline-flex;
        grid-area: toggle;
    }

    nav {
        grid-area: nav;
        width: 100%;
        margin: 0;
        display: none;
        justify-content: flex-start;
    }

    header.nav-open nav {
        display: flex;
    }

    nav ul {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 12px 0 4px;
    }

    nav ul li {
        margin-left: 0;
        width: 100%;
    }

    nav ul li a {
        display: inline-block;
        padding: 6px 0;
        font-size: 1rem;
    }

    .search-box {
        margin-left: 0;
        max-width: none;
        width: 100%;
    }

    .search-box form {
        width: 100%;
        background-color: white;
        padding: 2px 8px;
    }

    .search-box input {
        width: 100%;
        padding: 6px 6px;
    }

    .language-select {
        margin-left: 0;
        justify-self: end;
    }

    section {
        padding: 28px 0;
    }

    .section-header {
        margin-bottom: 36px;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .hero {
        margin-top: 120px;
        height: auto;
        max-height: none;
    }

    .hero-content {
        max-width: 100%;
        padding: 18px 16px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 18px;
    }

    .hero-buttons {
        flex-wrap: wrap;
        gap: 12px;
    }

    .hero .btn {
        padding: 10px 18px;
        font-size: 0.95rem;
    }

    .hero-bg-wrapper > img {
        display: none;
    }
}
.language-toggle {
    display: flex;
    align-items: center;
}

.lang-btn {
    padding: 5px 12px;
    border: none;
    background: transparent;
    color: var(--light-text);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 20px;
    font-weight: 500;
    margin-left: 5px;
    font-size: 0.9rem;
}

.lang-btn.active {
    background: #69C0FF;
    color: white;
}

.search-box {
    position: relative;
    margin-left: 12px;
    flex-shrink: 0;
}

.search-trigger {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0ea5a8;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.search-trigger:hover,
.search-trigger:focus-visible,
.search-box.is-open .search-trigger {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
    border-color: rgba(14, 165, 168, 0.22);
    color: #0b8f93;
    outline: none;
}

.search-trigger i {
    font-size: 1.1rem;
}

.search-sr {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.search-panel {
    position: fixed;
    top: 92px;
    right: max(20px, calc((100vw - 1200px) / 2 + 20px));
    width: 316px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    box-shadow: 0 24px 46px rgba(15, 23, 42, 0.14);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
    z-index: 1200;
}

.search-panel::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    border-radius: 18px 18px 0 0;
    background: linear-gradient(90deg, #10a6aa 0%, #4f86f7 100%);
}

.search-box.is-open .search-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.search-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.search-panel-header p {
    margin: 0;
    color: #12364b;
    font-size: 0.94rem;
    font-weight: 700;
    line-height: 1.5;
}

.search-panel-form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-panel-form input {
    flex: 1;
    height: 44px;
    border-radius: 10px;
    border: 1px solid rgba(15, 23, 42, 0.10);
    background: #f9fbfc;
    color: #111827;
    font-size: 0.96rem;
    padding: 0 12px;
}

.search-panel-form input:focus {
    outline: none;
    border-color: rgba(16, 166, 170, 0.32);
    box-shadow: 0 0 0 4px rgba(16, 166, 170, 0.10);
    background: #ffffff;
}

.search-panel-submit {
    width: 54px;
    height: 44px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #10a6aa 0%, #2274d1 100%);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 12px 22px rgba(16, 166, 170, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.search-panel-submit:hover,
.search-panel-submit:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 16px 28px rgba(16, 166, 170, 0.26);
    outline: none;
}

.search-panel-submit i {
    font-size: 1rem;
}

.search-panel-close-text {
    margin-top: 12px;
    width: 100%;
    border: none;
    background: transparent;
    color: #0f8d92;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    text-underline-offset: 6px;
}

.search-panel-close-text:hover,
.search-panel-close-text:focus-visible {
    color: #0b7980;
    outline: none;
}

.header-actions {
    margin-left: auto;
    margin-right: 40px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.language-select {
    position: relative;
    margin-left: 0;
    border: none;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
}

.search-box {
    margin-left: 0;
}

.consultation-trigger {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 46px;
    padding: 0 16px 0 10px;
    border: 1px solid rgba(11, 162, 154, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: #0f172a;
    cursor: pointer;
    box-shadow: 0 14px 34px rgba(11, 162, 154, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.consultation-trigger:hover,
.consultation-trigger:focus-visible,
.consultation-trigger[aria-expanded="true"] {
    transform: translateY(-1px);
    box-shadow: 0 18px 38px rgba(11, 162, 154, 0.18);
    border-color: rgba(11, 162, 154, 0.34);
    outline: none;
}

.consultation-trigger-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #1c7581;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(28, 117, 129, 0.24);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.consultation-trigger:hover .consultation-trigger-icon,
.consultation-trigger:focus-visible .consultation-trigger-icon,
.consultation-trigger[aria-expanded="true"] .consultation-trigger-icon {
    transform: scale(1.06);
    box-shadow: 0 14px 24px rgba(28, 117, 129, 0.28);
}

.consultation-trigger-icon i {
    font-size: 0.8rem;
}

.consultation-trigger-text {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

body.consultation-drawer-open {
    overflow: hidden;
}

.consultation-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.34);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
    z-index: 1390;
}

.consultation-overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.consultation-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(1024px, calc(100vw - 24px));
    height: 100vh;
    padding: 18px 18px 18px 0;
    transform: translateX(100%);
    transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 1400;
    pointer-events: none;
}

.consultation-drawer.is-open {
    transform: translateX(0);
    pointer-events: auto;
}

.consultation-drawer-shell {
    position: relative;
    height: 100%;
    padding: 34px 28px 28px;
    border-radius: 34px 0 0 34px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbfc 100%);
    box-shadow: -30px 0 80px rgba(15, 23, 42, 0.18);
    overflow-y: auto;
    overflow-x: hidden;
}

.consultation-drawer-shell::before {
    content: "";
    position: absolute;
    top: -46px;
    right: -26px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(11, 162, 154, 0.18) 0%, rgba(11, 162, 154, 0) 72%);
}

.consultation-drawer-shell::after {
    content: "";
    position: absolute;
    inset: auto auto 80px -60px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79, 134, 247, 0.10) 0%, rgba(79, 134, 247, 0) 74%);
}

.consultation-drawer-header {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 30px;
    padding: 30px 30px 28px;
    border-radius: 30px;
    background:
        radial-gradient(circle at top right, rgba(19, 194, 194, 0.18) 0%, rgba(19, 194, 194, 0) 34%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(240, 249, 248, 0.94) 100%);
    border: 1px solid rgba(11, 162, 154, 0.10);
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.08);
    z-index: 1;
}

.consultation-drawer-intro {
    max-width: 720px;
}

.consultation-kicker,
.consultation-card-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #0ba29a;
}

.consultation-kicker::before,
.consultation-card-label::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
}

.consultation-drawer-header h2 {
    margin: 12px 0 12px;
    font-size: clamp(1.68rem, 2.8vw, 2.38rem);
    line-height: 0.98;
    color: #0f172a;
    font-family: 'Roboto', 'Noto Sans SC', sans-serif;
    letter-spacing: -0.03em;
}

.consultation-drawer-header p {
    margin: 0;
    max-width: 52ch;
    color: #536475;
    font-size: 1.02rem;
    line-height: 1.8;
}

.consultation-header-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.consultation-highlight-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(11, 162, 154, 0.10);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
    color: #0f172a;
    font-size: 0.9rem;
    font-weight: 700;
}

.consultation-drawer-close {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.86);
    color: #0f172a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.consultation-drawer-close:hover,
.consultation-drawer-close:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
    background: #ffffff;
    outline: none;
}

.consultation-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 18px;
    align-items: start;
}

.consultation-card {
    position: relative;
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(226, 232, 240, 0.92);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

.consultation-card h3 {
    margin: 12px 0 10px;
    font-size: 1.28rem;
    line-height: 1.25;
    color: #0f172a;
    font-family: 'Roboto', 'Noto Sans SC', sans-serif;
}

.consultation-card p {
    margin: 0;
    color: #607081;
    line-height: 1.75;
}

.consultation-card-primary {
    grid-column: span 7;
    min-height: 316px;
}

.consultation-card-dark {
    grid-column: span 5;
    min-height: 196px;
    background: linear-gradient(180deg, #0f172a 0%, #111827 100%);
    border-color: rgba(255, 255, 255, 0.04);
    box-shadow: 0 20px 42px rgba(15, 23, 42, 0.18);
}

.consultation-card-dark .consultation-card-label,
.consultation-card-dark h3,
.consultation-card-dark p,
.consultation-card-dark i {
    color: #ffffff;
}

.consultation-card-dark .consultation-card-label {
    color: #67e8f9;
}

.consultation-card-dark .consultation-card-label::before {
    background: currentColor;
}

.consultation-card-accent {
    grid-column: span 5;
    background: linear-gradient(180deg, #eef8f7 0%, #f8fbfc 100%);
    border-color: rgba(11, 162, 154, 0.14);
    min-height: 244px;
}

.consultation-card-qr {
    grid-column: span 7;
    background:
        radial-gradient(circle at top right, rgba(19, 194, 194, 0.12) 0%, rgba(19, 194, 194, 0) 28%),
        linear-gradient(180deg, #fcfefe 0%, #f4fbfb 100%);
    border-color: rgba(11, 162, 154, 0.12);
}

.consultation-card-heading {
    display: flex;
    align-items: center;
    gap: 12px;
}

.consultation-card-heading i {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0ba29a;
    background: rgba(11, 162, 154, 0.10);
}

.consultation-card-dark .consultation-card-heading i {
    background: rgba(255, 255, 255, 0.12);
}

.consultation-address {
    margin-top: 10px;
    font-size: 1rem;
    max-width: 20ch;
}

.consultation-action-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 18px;
}

.consultation-action {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
    margin-top: 0;
    padding: 15px 18px;
    border-radius: 18px;
    border: 1px solid rgba(11, 162, 154, 0.10);
    background: #f8fbfc;
    color: #0f172a;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.consultation-action:hover,
.consultation-action:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
    border-color: rgba(11, 162, 154, 0.22);
    background: #ffffff;
    outline: none;
}

.consultation-action strong {
    font-size: 1rem;
    line-height: 1.4;
}

.consultation-action-meta {
    font-size: 0.85rem;
    color: #0ba29a;
    font-weight: 700;
}

.consultation-phone-action {
    background: linear-gradient(135deg, rgba(11, 162, 154, 0.10) 0%, rgba(19, 194, 194, 0.20) 100%);
    border-color: rgba(11, 162, 154, 0.18);
}

.consultation-ai-action {
    background: linear-gradient(135deg, #0ba29a 0%, #14b8a6 100%);
    color: #ffffff;
    justify-content: center;
    font-weight: 700;
    border-color: transparent;
    box-shadow: 0 16px 32px rgba(11, 162, 154, 0.20);
}

.consultation-ai-action:hover,
.consultation-ai-action:focus-visible {
    background: linear-gradient(135deg, #0a8f88 0%, #0fa796 100%);
    color: #ffffff;
}

.consultation-inline-link {
    display: inline-flex;
    margin-top: 18px;
    color: #0b8f93;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 7px;
}

.consultation-inline-link:hover,
.consultation-inline-link:focus-visible {
    color: #0a777b;
    outline: none;
}

.consultation-qr-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.consultation-qr-item {
    position: relative;
    padding: 20px;
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 251, 252, 0.98) 100%);
    border: 1px solid rgba(11, 162, 154, 0.10);
    text-align: center;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

.consultation-qr-item::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, #0ba29a 0%, #13c2c2 100%);
}

.consultation-qr-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    margin-bottom: 14px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(11, 162, 154, 0.08);
    color: #0b8f93;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.consultation-qr-image {
    width: 186px;
    height: 186px;
    margin: 0 auto 18px;
    padding: 10px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow:
        inset 0 0 0 1px rgba(226, 232, 240, 0.8),
        0 18px 34px rgba(15, 23, 42, 0.08);
}

.consultation-qr-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.consultation-qr-item h4 {
    margin: 0 0 10px;
    font-size: 1.08rem;
    color: #0f172a;
}

.consultation-qr-item p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.selected-lang {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 42px;
    height: 40px;
    padding: 0;
    border-radius: 10px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background-color: white;
    color: #000000;
    font-weight: 400;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.selected-lang .lang-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.selected-lang .lang-icon {
    width: 22px;
    height: 22px;
    display: block;
}

.selected-lang i {
    margin-left: 0;
    font-size: 1.15rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

.language-select:hover .selected-lang {
    background-color: #f0f0f0;
}

.language-select.active .selected-lang i {
    transform: none;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background-color: white;
    border-radius: 8px;
    box-shadow: none;
    overflow: hidden;
    width: 60px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.language-select.active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown li {
    padding: 8px 0;
    text-align: center;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-dropdown li:hover {
    background-color: #f5f5f5;
    color: #009944;
}

.lang-dropdown li.active {
    background-color: #f0f0f0;
    color: #009944;
    font-weight: 500;
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    background-color: var(--bg-color);
    padding: 0;
    margin-top: 75px;
    margin-bottom: 0;
    width: 100%;
    height: calc(100vh - 95px);
    max-height: 800px;
    border-radius: 0;
    /* Hero Image Fix */
    z-index: 3;
    mix-blend-mode: normal;
    filter: none;
    opacity: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: transparent;
    z-index: 2;
}

.hero-bg-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-bg-wrapper::before,
.hero-bg-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-bg-wrapper::before {
    z-index: 0;
    background:
        radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.18) 15%, rgba(255, 255, 255, 0) 38%),
        radial-gradient(circle at 78% 18%, rgba(145, 172, 166, 0.088) 0%, rgba(145, 172, 166, 0.04) 15%, rgba(145, 172, 166, 0) 34%),
        radial-gradient(circle at 72% 72%, rgba(120, 154, 147, 0.072) 0%, rgba(120, 154, 147, 0.032) 14%, rgba(120, 154, 147, 0) 30%),
        radial-gradient(circle at 34% 82%, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.064) 18%, rgba(255, 255, 255, 0) 36%);
}

.hero-bg-wrapper::after {
    z-index: 0;
    opacity: 0.37;
    background-image:
        linear-gradient(135deg, rgba(126, 150, 145, 0.024) 25%, transparent 25%, transparent 50%, rgba(126, 150, 145, 0.024) 50%, rgba(126, 150, 145, 0.024) 75%, transparent 75%, transparent),
        linear-gradient(0deg, rgba(255, 255, 255, 0.112), rgba(255, 255, 255, 0.016));
    background-size: 20px 20px, auto;
    background-position: 0 0, 0 0;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    transition: none;
    transform: none;
    opacity: 1;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: high-quality;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: auto;
}

.hero:hover .hero-image {
    transform: none;
    transition: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 4;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0;
}

.hero-content {
    max-width: 600px;
    margin-bottom: 0;
    text-align: left;
    color: #ffffff;
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(3px);
    background: linear-gradient(180deg, rgba(245, 240, 236, 0.16) 0%, rgba(245, 240, 236, 0.04) 100%);
    border: none;
    box-shadow: none;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000000;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-family: 'Roboto', 'Noto Sans SC', sans-serif;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 30px;
    color: #000000;
    line-height: 1.5;
    opacity: 0.9;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    font-family: 'Open Sans', 'Noto Sans SC', sans-serif;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
    justify-content: flex-start;
}

.hero .btn-primary {
    background: #777777;
    color: #000000;
    box-shadow: none;
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 500;
}

.hero .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: none;
}

.hero .btn-outline {
    border: 2px solid black;
    color: #000000;
    background: transparent;
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 500;
}

.hero .btn-outline:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #000000;
    border-color: black;
}

/* Continue with remaining styles... */
/* Services Section */
.services {
    background: #F5F0EC;
    position: relative;
    overflow: hidden;
}

.services::before {
    display: none;
}

.services .container {
    position: relative;
    z-index: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.service-card {
    background: rgba(255, 255, 255, 0.86);
    border-radius: 16px;
    padding: 26px 22px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(15, 23, 42, 0.08);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    overflow: hidden;
    position: relative;
}

.service-card:nth-child(-n + 4) {
    background: linear-gradient(180deg, rgba(244, 249, 252, 0.92) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.service-card:nth-child(n + 5) {
    background: linear-gradient(180deg, rgba(252, 247, 241, 0.92) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.service-icon {
    margin: 2px 0 6px;
    color: #EC5517;
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(236, 85, 23, 0.12), rgba(236, 85, 23, 0.06));
    border: 1px solid rgba(236, 85, 23, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    box-shadow: 0 10px 22px rgba(236, 85, 23, 0.14);
}

.service-icon i {
    font-size: 2rem;
    transition: transform 0.18s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.10);
    border-color: rgba(236, 85, 23, 0.22);
    background: rgba(255, 255, 255, 0.94);
}

.service-card:nth-child(-n + 4):hover {
    background: linear-gradient(180deg, rgba(239, 247, 251, 0.98) 0%, rgba(255, 255, 255, 0.94) 100%);
}

.service-card:nth-child(n + 5):hover {
    background: linear-gradient(180deg, rgba(251, 244, 235, 0.98) 0%, rgba(255, 255, 255, 0.94) 100%);
}

.service-card:hover .service-icon {
    transform: translateY(-2px) scale(1.04);
    background: linear-gradient(135deg, rgba(236, 85, 23, 0.18), rgba(236, 85, 23, 0.10));
    border-color: rgba(236, 85, 23, 0.26);
    box-shadow: 0 14px 28px rgba(236, 85, 23, 0.18);
}

.service-card:hover .service-icon i {
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 1.1rem;
    margin: 0;
    font-family: 'Roboto', 'Noto Sans SC', sans-serif;
    font-weight: 700;
    color: #111827;
}

.service-card p {
    color: rgba(17, 24, 39, 0.72);
    line-height: 1.75;
    margin: 0;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .service-card {
        padding: 22px 18px;
    }
}

/* News Section */
.news {
    background-color: #F5F0EC;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.news-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    min-height: 330px;
    position: relative;
}

.news-card:first-child {
    border: 2px solid #000000;
}

.news-card:nth-child(2) {
    border: 2px solid #EC5517;
}

.news-card::before {
    display: none;
}

.news-card:hover {
    transform: translateY(-2px) scale(1.008);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.075), 0 4px 12px rgba(0, 0, 0, 0.05);
}

.news-card:hover::before {
    display: none;
}

.news-image {
    position: relative;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 440px;
    object-fit: contain;
    transition: transform 0.5s ease;
    image-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.news-card:hover .news-image img {
    transform: scale(1.005);
}


.news-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #08979C;
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.news-date .day {
    font-size: 1.4rem;
    font-weight: 700;
}

.news-date .month {
    font-size: 0.9rem;
}

.news-content {
    padding: 28px 25px;
}

.news-category {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-content h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    line-height: 1.4;
    font-family: 'Roboto', 'Noto Sans SC', sans-serif;
    font-weight: 600;
}

.news-content p {
    color: var(--light-text);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.news-link {
    color: #009944;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.news-link:hover {
    color: var(--secondary-color);
}

.news-link::after {
    content: '→';
    margin-left: 5px;
    transition: margin-left 0.3s ease;
}

.news-link:hover::after {
    margin-left: 10px;
}

.news-more {
    text-align: center;
}

.news-more .btn-outline:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #000000;
    border-color: black;
}

/* Features Section with Fixes */
.features {
    padding: 60px 0;
    background: #F5F0EC;
    position: relative;
    overflow: hidden;
}

.features .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.features-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
    position: relative;
    width: 100%;
    min-height: 700px;
}

.circular-layout {
    position: relative;
    width: 700px;
    height: 700px;
    margin: 0 auto;
}

.center-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    width: 300px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: none;
    animation: centerPulse 4s ease-in-out infinite;
    overflow: hidden;
}

.center-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    z-index: 1;
}

@keyframes centerPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.02); }
}

.center-content h2 {
    font-size: 2.16rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    margin-left: 10px;
    line-height: 1.2;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
    white-space: nowrap;
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    color: #000;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.7);
    font-weight: bold;
}

.center-subtitle {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
    letter-spacing: 2px;
    margin: 0;
    position: relative;
    color: #000;
    font-weight: 500;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.7);
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.center-content p {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.center-content .question-mark {
    display: none;
}

.feature-circle {
    position: absolute;
    width: 160px;
    height: 160px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    box-shadow: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-circle[data-position="top"] {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.feature-circle[data-position="top-right"] {
    top: 15%;
    right: 0;
    transform: translateX(50%);
}

.feature-circle[data-position="bottom-right"] {
    bottom: 15%;
    right: 0;
    transform: translateX(50%);
}

.feature-circle[data-position="bottom"] {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.feature-circle[data-position="bottom-left"] {
    bottom: 15%;
    left: 0;
    transform: translateX(-50%);
}

.feature-circle[data-position="top-left"] {
    top: 15%;
    left: 0;
    transform: translateX(-50%);
}

.feature-circle:hover {
    transform: translateX(-50%) translateY(-3px) scale(1.03);
    box-shadow: none;
    background: #FFFFFF;
}

.feature-circle[data-position="top-right"]:hover,
.feature-circle[data-position="bottom-right"]:hover {
    transform: translateX(50%) translateY(-3px) scale(1.03);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #EC5517;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    color: white;
}

.feature-circle:hover .feature-icon {
    transform: scale(1.05) rotate(5deg);
    box-shadow: none;
}

.feature-icon i {
    font-size: 26px;
    color: white;
}

.feature-circle h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #333333;
    margin: 8px 0 6px;
    letter-spacing: 0.5px;
}

.feature-circle p {
    font-size: 0.75rem;
    color: #555555;
    line-height: 1.3;
    margin: 0;
    font-weight: 500;
}

/* About Section */
.about {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 18%, rgba(125, 180, 200, 0.12) 0%, rgba(125, 180, 200, 0) 34%),
        radial-gradient(circle at 82% 72%, rgba(219, 199, 170, 0.14) 0%, rgba(219, 199, 170, 0) 32%),
        linear-gradient(180deg, #fbf8f3 0%, #f6f3ee 100%);
    padding: 88px 0 102px;
    min-height: 304px;
}

.about::before {
    content: "";
    position: absolute;
    inset: 44px 0 auto;
    height: 1px;
    background: linear-gradient(90deg, rgba(84, 162, 178, 0), rgba(84, 162, 178, 0.32), rgba(84, 162, 178, 0));
    pointer-events: none;
}

.about-content {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
    gap: 72px;
    align-items: center;
    min-height: 300px;
    margin-top: 56px;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 0;
    padding-right: 0;
    margin-top: 0;
    max-width: none;
    margin-left: 0;
}

.about-text .about-paragraph {
    position: relative;
    margin-bottom: 0;
    padding: 28px 30px 30px;
    border: 1px solid rgba(119, 146, 170, 0.18);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(247, 244, 239, 0.88) 100%);
    box-shadow: 0 16px 40px rgba(44, 61, 80, 0.06);
    backdrop-filter: blur(10px);
}

.about-text .about-paragraph:nth-child(1) {
    max-width: 640px;
}

.about-text .about-paragraph:nth-child(2) {
    max-width: 680px;
    align-self: flex-end;
    background: linear-gradient(180deg, rgba(244, 248, 251, 0.94) 0%, rgba(248, 245, 240, 0.9) 100%);
}

.about-text .about-paragraph:nth-child(3) {
    max-width: 650px;
}

.about-card-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: #5f7083;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.about-card-kicker::before {
    content: "";
    width: 34px;
    height: 1px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(51, 145, 168, 0.95), rgba(51, 145, 168, 0.15));
}

.about-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: high-quality;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.about-visual {
    position: relative;
    min-height: 620px;
    padding: 44px 0 88px 52px;
}

.about-visual::before {
    content: "";
    position: absolute;
    inset: 72px 52px 56px 0;
    border-radius: 38px;
    background: linear-gradient(145deg, rgba(236, 241, 246, 0.9) 0%, rgba(255, 255, 255, 0.64) 100%);
    border: 1px solid rgba(113, 143, 169, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.about-visual::after {
    content: "";
    position: absolute;
    right: 18px;
    bottom: 38px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(80, 164, 185, 0.18) 0%, rgba(80, 164, 185, 0) 72%);
    pointer-events: none;
}

.about-image {
    position: relative;
    z-index: 2;
    margin-left: auto;
    width: min(100%, 520px);
    border-radius: 34px;
    overflow: hidden;
    border: 1px solid rgba(113, 143, 169, 0.16);
    background: #ffffff;
    box-shadow: 0 30px 70px rgba(38, 56, 77, 0.14);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.about-image:hover {
    transform: translateY(-6px);
    box-shadow: 0 38px 76px rgba(38, 56, 77, 0.18);
}

.about-image img {
    aspect-ratio: 0.92;
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-visual-chip {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    width: min(100%, 290px);
    padding: 18px 20px 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(113, 143, 169, 0.18);
    box-shadow: 0 18px 34px rgba(43, 62, 80, 0.08);
    backdrop-filter: blur(18px);
}

.about-visual-chip-label,
.about-visual-note-label {
    display: inline-block;
    margin-bottom: 10px;
    color: #54708a;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.about-visual-chip-label {
    text-transform: uppercase;
}

.about-visual-chip p,
.about-visual-note p {
    margin: 0;
    color: #24384c;
    line-height: 1.7;
    font-size: 0.98rem;
    font-weight: 500;
}

.about-visual-notes {
    position: absolute;
    left: 0;
    right: 24px;
    bottom: 0;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.about-visual-note {
    padding: 20px 22px 22px;
    min-height: 148px;
    border-radius: 24px;
    border: 1px solid rgba(113, 143, 169, 0.16);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(244, 248, 251, 0.86) 100%);
    box-shadow: 0 16px 36px rgba(43, 62, 80, 0.07);
}

.about-text .about-line {
    margin-bottom: 0;
    color: #2a3d4f;
    text-align: left;
    line-height: 1.9;
    font-size: 1.04rem;
    max-width: 100%;
    margin-right: 0;
    font-weight: 500;
}

/* Contact Section */
.contact {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, #f4efe9 0%, #eee8df 100%);
    padding: 55px 0 120px;
}

.contact::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(32, 58, 75, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(32, 58, 75, 0.06) 1px, transparent 1px);
    background-size: 36px 36px;
    opacity: 0.38;
    pointer-events: none;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-scenarios-shell {
    max-width: 1180px;
    margin: 0 auto;
}

.contact-scenarios-header {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

.business-scene-cta-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    color: #4c6675;
    text-transform: uppercase;
}

.contact-scenarios-header h2 {
    margin: 0;
    font-size: 2rem;
    line-height: 1.2;
    color: #203646;
    font-weight: 600;
    letter-spacing: 0;
    font-family: 'Roboto', 'Noto Sans SC', sans-serif;
}

.contact-scenarios-header p {
    margin: 22px auto 0;
    max-width: 780px;
    font-size: 1.14rem;
    line-height: 1.9;
    color: #5f7481;
}

.business-scene-pills {
    margin-top: 42px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.business-scene-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 24px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(32, 58, 75, 0.08);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
    color: #203646;
    font-size: 1.02rem;
    font-weight: 500;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.business-scene-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(15, 23, 42, 0.08);
}

.business-scene-cta-card {
    margin-top: 56px;
    padding: 34px 38px;
    border-radius: 30px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 249, 250, 0.93));
    border: 1px solid rgba(32, 58, 75, 0.08);
    box-shadow: 0 24px 44px rgba(15, 23, 42, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.business-scene-cta-copy {
    max-width: 780px;
}

.business-scene-cta-card h3 {
    margin: 16px 0 0;
    font-size: clamp(1.42rem, 2.4vw, 2.7rem);
    line-height: 1.2;
    color: #203646;
    font-weight: 500;
    letter-spacing: 0;
    font-family: 'Roboto', 'Noto Sans SC', sans-serif;
    white-space: normal;
}

.business-scene-cta-card p {
    margin: 18px 0 0;
    font-size: 1.08rem;
    line-height: 1.9;
    color: #5f7481;
}

.business-scene-cta-button {
    flex: 0 0 auto;
    min-width: 126px;
    height: 58px;
    padding: 0 20px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #203f63 0%, #325b84 100%);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 20px 34px rgba(32, 63, 99, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.business-scene-cta-button:hover,
.business-scene-cta-button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 24px 38px rgba(32, 63, 99, 0.26);
    outline: none;
}

.qrcode-section {
    display: flex;
    flex-direction: row;
    gap: 3px;
    justify-content: center;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
    margin-left: -50px;
}

.qrcode-item {
    background: transparent;
    border-radius: 0;
    padding: 20px 15px;
    text-align: center;
    box-shadow: none;
    transition: all 0.3s ease;
    border: none;
    flex: 0 0 auto;
    max-width: 400px;
}

.qrcode-item:first-child {
    margin-right: 40px;
    margin-left: 5px;
}

.qrcode-item:last-child {
    margin-left: -30px;
}

.qrcode-image {
    width: 288px;
    height: 288px;
    margin: 0 auto 25px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15), 0 4px 8px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.08);
    position: relative;
}

.qrcode-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    filter: contrast(1.1) saturate(1.05);
}

.qrcode-item h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    font-family: 'Roboto', 'Noto Sans SC', sans-serif;
}

.qrcode-item p {
    font-size: 1rem;
    color: #666;
    margin: 0;
    font-weight: 500;
}

/* Footer */
footer {
    background: #222222;
    color: #ffffff;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo {
    transform: translateY(-5px);
}

.footer-logo-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
    position: relative;
    min-height: 80px;
    overflow: visible;
    margin-bottom: 15px;
}

.footer-logo-img {
    max-height: 45px;
    min-height: 38px;
    width: 180px;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: center;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: high-quality;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    filter: invert(1) hue-rotate(180deg);
}

.footer-logo-text {
    flex: 1;
}

.footer-logo-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
    font-family: 'Roboto', 'Noto Sans SC', sans-serif;
}

.footer-logo-url {
    font-size: 1.2rem;
    color: #00C853;
    font-weight: 500;
    font-style: italic;
}

.footer-logo p {
    color: #cccccc;
    margin-top: 15px;
    font-size: 1rem;
}

.footer-company-name {
    margin-top: 8px;
    margin-bottom: 0;
    color: #ffffff !important;
    font-size: 1.08rem;
    font-weight: 700 !important;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

.footer-qr-launchers {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 24px;
}

.footer-qr-item {
    position: relative;
}

.footer-qr-trigger {
    width: 52px;
    height: 52px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    cursor: pointer;
    transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    box-shadow: none;
}

.footer-qr-trigger:hover,
.footer-qr-trigger:focus-visible,
.footer-qr-item.is-open .footer-qr-trigger {
    background: #0f8f89;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.22);
    outline: none;
}

.footer-qr-trigger i {
    pointer-events: none;
}

.footer-qr-item:nth-child(1) .footer-qr-trigger {
    background: rgba(26, 173, 25, 0.12);
}

.footer-qr-item:nth-child(1) .footer-qr-trigger i {
    color: #8be28f;
    text-shadow: 0 0 10px rgba(139, 226, 143, 0.2);
}

.footer-qr-item:nth-child(2) .footer-qr-trigger {
    background: rgba(54, 207, 201, 0.12);
}

.footer-qr-item:nth-child(2) .footer-qr-trigger i {
    color: #8ceae5;
    text-shadow: 0 0 10px rgba(140, 234, 229, 0.2);
}

.footer-email-item .footer-qr-trigger {
    background: rgba(79, 141, 246, 0.16);
}

.footer-email-item .footer-qr-trigger i {
    color: #b8d5ff;
    text-shadow: 0 0 10px rgba(184, 213, 255, 0.2);
}

.footer-email-item .footer-qr-trigger:hover,
.footer-email-item .footer-qr-trigger:focus-visible,
.footer-email-item.is-open .footer-qr-trigger {
    background: #4f86f7;
}

.footer-qr-sr {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.footer-qr-popup {
    position: absolute;
    left: 0;
    bottom: calc(100% + 16px);
    width: 198px;
    padding: 14px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px) scale(0.96);
    transform-origin: bottom left;
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    z-index: 20;
}

.footer-qr-item:last-child .footer-qr-popup {
    left: auto;
    right: 0;
    transform-origin: bottom right;
}

.footer-qr-popup::after {
    content: '';
    position: absolute;
    left: 18px;
    bottom: -8px;
    width: 16px;
    height: 16px;
    background: #ffffff;
    transform: rotate(45deg);
    border-radius: 3px;
}

.footer-qr-item:last-child .footer-qr-popup::after {
    left: auto;
    right: 18px;
}

.footer-email-popup {
    width: 228px;
    padding: 0;
    background: #4f86f7;
    border-radius: 12px;
    overflow: hidden;
}

.footer-email-popup::after {
    background: #4f86f7;
}

.footer-email-link {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 58px;
    padding: 0 18px;
    color: #ffffff;
    font-size: 1.02rem;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
}

.footer-email-link:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

.footer-email-link i {
    font-size: 1.15rem;
    flex: 0 0 auto;
}

.footer-email-link span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
}

.footer-qr-popup img {
    width: 170px;
    height: 170px;
    margin: 0 auto 12px;
    object-fit: contain;
    object-position: center;
    image-rendering: auto;
    display: block;
}

.footer-qr-popup h4 {
    font-size: 1rem;
    color: #222222;
    margin-bottom: 6px;
    text-align: center;
    font-family: 'Roboto', 'Noto Sans SC', sans-serif;
}

.footer-qr-popup p {
    font-size: 0.88rem;
    line-height: 1.45;
    color: #666666;
    margin: 0;
    text-align: center;
}

@media (hover: hover) {
    .footer-qr-item:hover .footer-qr-popup,
    .footer-qr-item:focus-within .footer-qr-popup {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }
}

.footer-qr-item.is-open .footer-qr-popup {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.footer-links h3,
.footer-services h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-links {
    margin-right: 20px;
}

footer .footer-content .footer-services {
    margin-left: 20px;
}

.footer-links h3::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: #009944;
    margin-top: 8px;
    border-radius: 2px;
}

.footer-services h3::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: #009944;
    margin-top: 8px;
    border-radius: 2px;
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 10px;
}

.footer-links ul li a,
.footer-services ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
    font-weight: 400;
}

.footer-links ul li a:hover,
.footer-services ul li a:hover {
    color: #00C853;
}

.footer-bottom {
    border-top: 1px solid #444444;
    padding-top: 20px;
    text-align: center;
    color: #cccccc;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .circular-layout {
        width: 600px;
        height: 600px;
    }
    
    .center-content {
        width: 240px;
        height: 240px;
    }
    
    .center-content h2 {
        font-size: 2.16rem;
    }
    
    .feature-circle {
        width: 140px;
        height: 140px;
        padding: 15px;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        background: #EC5517;
    }
    
    .feature-icon i {
        font-size: 1.2rem;
    }
    
    .feature-circle h3 {
        font-size: 0.85rem;
    }
    
    .feature-circle p {
        font-size: 0.7rem;
    }
    
    .qrcode-section {
        gap: 2px;
        max-width: 800px;
    }
    
    .qrcode-item {
        max-width: 350px;
    }
    
    .qrcode-item:first-child {
        margin-right: 40px;
        margin-left: 5px;
    }
    
    .qrcode-image {
        width: 240px;
        height: 240px;
    }
}

@media (max-width: 768px) {
    .features {
        padding: 80px 0;
    }
    
    .features-showcase {
        min-height: 500px;
    }
    
    .circular-layout {
        width: 500px;
        height: 500px;
    }
    
    .center-content {
        width: 200px;
        height: 200px;
    }
    
    .center-content h2 {
        font-size: 1.62rem;
        margin-bottom: 10px;
    }
    
    .center-subtitle {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }
    
    .feature-circle {
        width: 120px;
        height: 120px;
        padding: 12px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 8px;
    }
    
    .feature-icon i {
        font-size: 1rem;
    }
    
    .feature-circle h3 {
        font-size: 0.8rem;
        margin: 6px 0 4px;
    }
    
    .feature-circle p {
        font-size: 0.65rem;
        line-height: 1.2;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .info-item {
        width: 100%;
        max-width: 100%;
    }
    
    .info-item i {
        font-size: 1.8rem;
        width: 50px;
        height: 50px;
    }
    
    .info-text h3 {
        font-size: 1.2rem;
    }
    
    .info-text p {
        font-size: 1rem;
    }
    
    .qrcode-section {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        margin-left: 0;
    }
    
    .qrcode-item {
        max-width: 250px;
    }
    
    .qrcode-item:first-child,
    .qrcode-item:last-child {
        margin: 0;
    }
    
    .qrcode-image {
        width: 200px;
        height: 200px;
    }

    .footer-qr-popup {
        width: 188px;
    }

    .footer-qr-popup img {
        width: 160px;
        height: 160px;
    }
    
    .qrcode-item h4 {
        font-size: 1.2rem;
    }
    
    .qrcode-item p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .contact {
        padding: 30px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info {
        gap: 20px;
    }
    
    .qrcode-section {
        flex-direction: column;
        gap: 20px;
    }
    
    .info-item {
        padding: 20px;
        width: 100%;
    }
    
    .qrcode-item {
        max-width: 200px;
    }
    
    .qrcode-image {
        width: 160px;
        height: 160px;
    }
    
    .circular-layout {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .center-content {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        margin-bottom: 30px;
    }
    
    .center-content h2 {
        font-size: 1.5rem;
    }
    
    .center-subtitle {
        font-size: 0.8rem;
    }
    
    .feature-circle {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        transform: none;
        width: 90%;
        height: auto;
        border-radius: 10px;
        margin-bottom: 20px;
        padding: 15px;
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        margin-bottom: 0;
        margin-right: 15px;
    }
    
    .feature-icon i {
        font-size: 1rem;
    }
    
    .feature-circle h3 {
        font-size: 0.9rem;
        margin: 0 0 5px;
    }
    
    .feature-circle p {
        font-size: 0.75rem;
    }

    .footer-qr-launchers {
        margin-top: 20px;
    }

    .footer-qr-trigger {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        font-size: 1.3rem;
    }

    .footer-qr-popup {
        bottom: calc(100% + 12px);
        width: min(188px, calc(100vw - 56px));
        padding: 12px;
    }

    .footer-qr-popup img {
        width: min(156px, calc(100vw - 88px));
        height: min(156px, calc(100vw - 88px));
    }
} 

header .language-select {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

header .selected-lang,
header .selected-lang span {
    white-space: nowrap;
}

@media (max-width: 1100px) {
    .consultation-trigger {
        padding-right: 14px;
    }

    .consultation-trigger-text {
        font-size: 0.9rem;
    }

    .consultation-drawer {
        width: min(900px, calc(100vw - 20px));
    }

    .consultation-drawer-shell {
        padding: 28px 22px 24px;
    }

    .consultation-grid {
        gap: 16px;
    }

    .consultation-card-primary,
    .consultation-card-qr {
        grid-column: span 12;
    }

    .consultation-card-dark,
    .consultation-card-accent {
        grid-column: span 6;
    }
}

@media (min-width: 769px) {
    header .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        flex-wrap: nowrap;
        gap: 18px;
        padding: 0 20px;
    }

    nav {
        flex: 1 1 auto;
        justify-content: flex-start;
        margin-left: clamp(16px, 2vw, 28px);
        margin-right: 0;
        padding-right: 20px;
        min-width: 0;
    }

    nav ul {
        flex-wrap: nowrap;
        gap: 5px;
        justify-content: flex-start;
    }

    nav ul li {
        white-space: nowrap;
        margin-left: 0;
    }

    .header-actions {
        margin-left: auto;
        margin-right: 40px;
        gap: 12px;
        padding-left: 20px;
        border-left: 1px solid rgba(15, 23, 42, 0.08);
    }

    html[lang="en"] header .container {
        gap: 4px;
        padding: 0 10px;
    }

    html[lang="en"] .logo-img {
        width: 130px;
    }

    html[lang="en"] nav {
        margin-left: 50px;
        padding-right: 6px;
    }

    html[lang="en"] nav ul li {
        margin-left: 0;
    }

    html[lang="en"] nav ul {
        gap: 6px;
    }

    html[lang="en"] nav ul li a {
        font-size: 0.95rem;
    }

    html[lang="en"] .header-actions {
        margin-right: 16px;
        gap: 8px;
        padding-left: 12px;
    }

    html[lang="en"] .search-panel {
        width: 340px;
    }

    html[lang="en"] .search-panel-header p {
        font-size: 0.9rem;
    }

    html[lang="en"] .consultation-trigger {
        padding-right: 10px;
        padding-left: 10px;
    }

    html[lang="en"] .consultation-trigger-text {
        font-size: 0.82rem;
    }
}

@media (min-width: 769px) {
    html[lang="en"] nav ul li a.nav-link.btn-software {
        font-size: 0.92rem;
        padding: 7px 11px;
    }
}

/* Homepage: white main content backdrop (header/footer unchanged) */
main.page-content {
    background: #ffffff;
}

main.page-content .hero {
    background: #ffffff !important;
}

main.page-content .hero-bg-wrapper::before,
main.page-content .hero-bg-wrapper::after {
    background: none !important;
    opacity: 0;
}

main.page-content .services,
main.page-content .features,
main.page-content .news,
main.page-content .about,
main.page-content .contact {
    background: #ffffff !important;
}

main.page-content .about::before,
main.page-content .contact::before,
main.page-content .contact::after {
    background: none !important;
    opacity: 0;
}
