.site-header {
    position: relative;
    z-index: 100;
    min-height: 126px;
    border-bottom: 1px solid #edf1f5;
    background: #ffffff;
    display: flex;
    align-items: center;
}

.site-header-container {
    width: 100%;
    min-height: 126px;
    display: flex;
    align-items: center;
    gap: 26px;
}

.site-brand {
    width: 285px;
    height: 104px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
}

.site-brand-icon {
    width: 285px;
    height: 104px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    overflow: hidden;
}

.site-brand-icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: left center;
    transform: scale(1.40);
    transform-origin: left center;
}

.site-brand-text {
    display: none;
}

.site-navigation {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 25px;
}

.site-navigation a {
    position: relative;
    padding: 10px 0;
    color: #34445b;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    transition: color 0.25s ease;
}

.site-navigation a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 2px;
    border-radius: 5px;
    background: #0878f9;
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.site-navigation a:hover,
.site-navigation a.active {
    color: #0878f9;
}

.site-navigation a:hover::after,
.site-navigation a.active::after {
    transform: scaleX(1);
}

.site-header-contact {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-header-email,
.site-header-phone {
    min-height: 53px;
    padding: 8px 13px;
    border: 1px solid #e2e9f1;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.site-header-email:hover,
.site-header-phone:hover {
    transform: translateY(-2px);
    border-color: rgba(8, 120, 249, 0.35);
    box-shadow: 0 13px 28px rgba(7, 27, 51, 0.08);
}

.site-header-email > span:first-child,
.site-header-phone-icon {
    width: 35px;
    height: 35px;
    flex-shrink: 0;
    border-radius: 11px;
    background: rgba(8, 120, 249, 0.09);
    color: #0878f9;
    display: grid;
    place-items: center;
}

.site-header-email > span:last-child,
.site-header-phone-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.site-header-email small,
.site-header-phone-text small {
    color: #8a96a7;
    font-size: 9px;
}

.site-header-email strong,
.site-header-phone-text strong {
    margin-top: 2px;
    color: #071b33;
    font-size: 12px;
    white-space: nowrap;
}

.mobile-menu-button {
    display: none;
    width: 45px;
    height: 45px;
    margin-left: auto;
    padding: 10px;
    border: 1px solid #e1e8f0;
    border-radius: 12px;
    background: #ffffff;
    cursor: pointer;
}

.mobile-menu-button span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    border-radius: 5px;
    background: #071b33;
}

@media (max-width: 1400px) {

    .site-brand,
    .site-brand-icon {
        width: 255px;
        height: 96px;
    }

    .site-brand-icon img {
        transform: scale(1.14);
    }

    .site-navigation {
        gap: 20px;
    }

    .site-navigation a {
        font-size: 12px;
    }

    .site-header-email {
        display: none;
    }

}

@media (max-width: 1150px) {

    .site-brand,
    .site-brand-icon {
        width: 225px;
        height: 88px;
    }

    .site-brand-icon img {
        transform: scale(1.12);
    }

    .site-header-phone {
        display: none;
    }

}

@media (max-width: 850px) {

    .site-header,
    .site-header-container {
        min-height: 102px;
    }

    .site-brand,
    .site-brand-icon {
        width: 215px;
        height: 84px;
    }

    .site-brand-icon img {
        transform: scale(1.1);
    }

    .mobile-menu-button {
        display: block;
    }

    .site-header-contact {
        display: none;
    }

    .site-navigation {
        position: absolute;
        left: 20px;
        right: 20px;
        top: calc(100% + 8px);
        margin-left: 0;
        padding: 18px;
        border: 1px solid #e1e8f0;
        border-radius: 17px;
        background: #ffffff;
        box-shadow: 0 20px 45px rgba(7, 27, 51, 0.13);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }

    .site-navigation.open {
        display: flex;
    }

    .site-navigation a {
        padding: 12px;
        border-radius: 10px;
    }

    .site-navigation a:hover,
    .site-navigation a.active {
        background: rgba(8, 120, 249, 0.07);
    }

    .site-navigation a::after {
        display: none;
    }

}

@media (max-width: 600px) {

    .site-header,
    .site-header-container {
        min-height: 88px;
    }

    .site-header-container {
        gap: 12px;
    }

    .site-brand,
    .site-brand-icon {
        width: 185px;
        height: 72px;
    }

    .site-brand-icon img {
        transform: scale(1.08);
    }

    .mobile-menu-button {
        width: 43px;
        height: 43px;
    }

}

@media (max-width: 400px) {

    .site-brand,
    .site-brand-icon {
        width: 160px;
        height: 65px;
    }

}

.trust-highlight-section {
    position: relative;
    z-index: 5;
    padding: 0 0 25px;
    background: #f5f9fd;
}

.trust-highlight-container {
    position: relative;
    min-height: 190px;
    padding: 34px 38px;
    border: 1px solid rgba(8, 120, 249, 0.12);
    border-radius: 26px;
    background:
        radial-gradient(circle at 95% 10%, rgba(40, 198, 239, 0.13), transparent 28%),
        #ffffff;
    display: grid;
    grid-template-columns: 1fr 1px 1fr auto;
    align-items: center;
    gap: 32px;
    box-shadow: 0 24px 55px rgba(7, 27, 51, 0.09);
    overflow: hidden;
}

.trust-highlight-container::before {
    content: '';
    position: absolute;
    width: 230px;
    height: 230px;
    right: -115px;
    bottom: -150px;
    border-radius: 50%;
    border: 38px solid rgba(8, 120, 249, 0.04);
    pointer-events: none;
}

.trust-highlight-item {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 19px;
}

.trust-highlight-icon {
    width: 67px;
    height: 67px;
    flex-shrink: 0;
    border-radius: 20px;
    background: linear-gradient(145deg, #0878f9, #25bde8);
    color: #ffffff;
    display: grid;
    place-items: center;
    font-size: 22px;
    font-weight: 900;
    box-shadow: 0 13px 28px rgba(8, 120, 249, 0.2);
}

.trust-highlight-discovery .trust-highlight-icon {
    background: linear-gradient(145deg, #20a962, #28c978);
    box-shadow: 0 13px 28px rgba(32, 169, 98, 0.2);
}

.trust-highlight-content {
    min-width: 0;
}

.trust-highlight-content > span {
    color: #0878f9;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}

.trust-highlight-discovery .trust-highlight-content > span {
    color: #20a962;
}

.trust-highlight-content h2 {
    margin-top: 5px;
    color: #071b33;
    font-size: 21px;
    line-height: 1.25;
}

.trust-highlight-content p {
    max-width: 390px;
    margin-top: 7px;
    color: #718096;
    font-size: 11px;
    line-height: 1.65;
}

.trust-highlight-divider {
    width: 1px;
    height: 90px;
    background: #e1e8f0;
}

.trust-highlight-actions {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.trust-highlight-whatsapp,
.trust-highlight-phone {
    min-width: 225px;
    min-height: 59px;
    padding: 8px 14px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 11px;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.trust-highlight-whatsapp {
    background: #24b86a;
    color: #ffffff;
    box-shadow: 0 13px 28px rgba(36, 184, 106, 0.2);
}

.trust-highlight-phone {
    border: 1px solid #e1e8f0;
    background: #ffffff;
    color: #071b33;
}

.trust-highlight-whatsapp:hover,
.trust-highlight-phone:hover {
    transform: translateY(-3px);
}

.trust-highlight-phone:hover {
    box-shadow: 0 13px 28px rgba(7, 27, 51, 0.09);
}

.trust-highlight-whatsapp > span:first-child,
.trust-highlight-phone > span:first-child {
    width: 39px;
    height: 39px;
    flex-shrink: 0;
    border-radius: 12px;
    display: grid;
    place-items: center;
}

.trust-highlight-whatsapp > span:first-child {
    background: rgba(255, 255, 255, 0.15);
}

.trust-highlight-phone > span:first-child {
    background: rgba(8, 120, 249, 0.09);
    color: #0878f9;
}

.trust-highlight-whatsapp > span:last-child,
.trust-highlight-phone > span:last-child {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.trust-highlight-whatsapp small {
    color: rgba(255, 255, 255, 0.72);
    font-size: 8px;
}

.trust-highlight-phone small {
    color: #8793a3;
    font-size: 8px;
}

.trust-highlight-whatsapp strong,
.trust-highlight-phone strong {
    margin-top: 2px;
    font-size: 11px;
}

@media (max-width: 1150px) {

    .trust-highlight-container {
        grid-template-columns: 1fr 1px 1fr;
    }

    .trust-highlight-actions {
        grid-column: 1 / -1;
        width: 100%;
        flex-direction: row;
        justify-content: center;
    }

}

@media (max-width: 800px) {

    .trust-highlight-container {
        grid-template-columns: 1fr;
        padding: 32px 27px;
        gap: 27px;
    }

    .trust-highlight-divider {
        width: 100%;
        height: 1px;
    }

    .trust-highlight-actions {
        grid-column: auto;
    }

    .trust-highlight-whatsapp,
    .trust-highlight-phone {
        flex: 1;
    }

}

@media (max-width: 560px) {

    .trust-highlight-section {
        padding-bottom: 15px;
    }

    .trust-highlight-container {
        padding: 27px 21px;
        border-radius: 22px;
    }

    .trust-highlight-item {
        align-items: flex-start;
    }

    .trust-highlight-icon {
        width: 57px;
        height: 57px;
        border-radius: 17px;
        font-size: 18px;
    }

    .trust-highlight-content h2 {
        font-size: 18px;
    }

    .trust-highlight-actions {
        flex-direction: column;
    }

    .trust-highlight-whatsapp,
    .trust-highlight-phone {
        width: 100%;
        min-width: 0;
    }

}

.navigation-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.navigation-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.navigation-dropdown-arrow {
    display: inline-block;
    color: #7d8999;
    font-size: 11px;
    transition:
        transform 0.25s ease,
        color 0.25s ease;
}

.navigation-dropdown-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    width: 620px;
    padding: 15px;
    border: 1px solid #e3eaf2;
    border-radius: 20px;
    background: #ffffff;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(12px);
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
    box-shadow: 0 24px 55px rgba(7, 27, 51, 0.15);
}

.navigation-dropdown-menu::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: -22px;
    height: 22px;
}

.navigation-dropdown-menu::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    width: 15px;
    height: 15px;
    border-top: 1px solid #e3eaf2;
    border-left: 1px solid #e3eaf2;
    background: #ffffff;
    transform: translateX(-50%) rotate(45deg);
}

.site-navigation .navigation-dropdown-menu a {
    position: relative;
    min-height: 72px;
    padding: 12px 13px;
    border: 1px solid transparent;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #34445b;
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.site-navigation .navigation-dropdown-menu a::after {
    display: none;
}

.site-navigation .navigation-dropdown-menu a:hover,
.site-navigation .navigation-dropdown-menu a.active {
    border-color: rgba(8, 120, 249, 0.13);
    background: rgba(8, 120, 249, 0.06);
    transform: translateY(-2px);
}

.dropdown-service-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 12px;
    background: rgba(8, 120, 249, 0.09);
    color: #0878f9;
    display: grid;
    place-items: center;
    font-size: 17px;
}

.navigation-dropdown-menu a > span:last-child {
    min-width: 0;
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.navigation-dropdown-menu a strong {
    color: #071b33;
    font-size: 12px;
    font-weight: 800;
}

.navigation-dropdown-menu a small {
    margin-top: 4px;
    color: #8490a0;
    font-size: 9px;
    font-weight: 500;
    white-space: normal;
}

@media (max-width: 1200px) {

    .navigation-dropdown-menu {
        left: 40%;
        width: 560px;
    }

}

@media (max-width: 850px) {

    .navigation-dropdown {
        width: 100%;
        display: block;
    }

    .navigation-dropdown-trigger {
        width: 100%;
        justify-content: space-between;
    }

    .navigation-dropdown-arrow {
        display: none;
    }

    .navigation-dropdown-menu {
        position: static;
        width: 100%;
        margin-top: 7px;
        padding: 8px;
        border: 0;
        border-radius: 14px;
        background: #f5f9fd;
        grid-template-columns: 1fr;
        gap: 5px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        box-shadow: none;
    }

    .navigation-dropdown-menu::before,
    .navigation-dropdown-menu::after {
        display: none;
    }

    .navigation-dropdown:hover .navigation-dropdown-menu,
    .navigation-dropdown:focus-within .navigation-dropdown-menu {
        transform: none;
    }

    .site-navigation .navigation-dropdown-menu a {
        min-height: 59px;
        padding: 9px 10px;
        background: #ffffff;
    }

    .dropdown-service-icon {
        width: 37px;
        height: 37px;
        border-radius: 10px;
        font-size: 15px;
    }

    .navigation-dropdown-menu a strong {
        font-size: 11px;
    }

    .navigation-dropdown-menu a small {
        font-size: 8px;
    }

}

.service-detail-hero {
    position: relative;
    overflow: hidden;
    padding: 105px 0 95px;
    background:
        linear-gradient(135deg, #f4f9ff 0%, #ffffff 55%, #eef7ff 100%);
}

.service-detail-hero-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.service-detail-shape-one {
    top: -180px;
    right: -130px;
    width: 430px;
    height: 430px;
    background: rgba(8, 120, 249, 0.08);
}

.service-detail-shape-two {
    bottom: -220px;
    left: -170px;
    width: 420px;
    height: 420px;
    background: rgba(0, 195, 255, 0.07);
}

.service-detail-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
    align-items: center;
    gap: 80px;
}

.service-detail-breadcrumb {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    color: #8a96a7;
    font-size: 13px;
    font-weight: 600;
}

.service-detail-breadcrumb a {
    color: #607087;
}

.service-detail-breadcrumb a:hover {
    color: #0878f9;
}

.service-detail-breadcrumb strong {
    color: #0878f9;
}

.service-detail-label {
    width: fit-content;
    margin-bottom: 20px;
    padding: 9px 15px;
    border: 1px solid rgba(8, 120, 249, 0.18);
    border-radius: 999px;
    background: rgba(8, 120, 249, 0.07);
    color: #0878f9;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.service-detail-hero-content h1 {
    max-width: 760px;
    margin: 0;
    color: #071b33;
    font-size: clamp(39px, 5vw, 67px);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.service-detail-hero-content h1 span {
    display: block;
    color: #0878f9;
}

.service-detail-hero-content > p {
    max-width: 690px;
    margin: 26px 0 0;
    color: #64758a;
    font-size: 17px;
    line-height: 1.85;
}

.service-detail-hero-buttons {
    margin-top: 34px;
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 14px;
}

.service-detail-primary-button,
.service-detail-secondary-button {
    min-height: 68px;
    padding: 13px 20px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.service-detail-primary-button {
    background: #0878f9;
    color: #ffffff;
    box-shadow: 0 16px 35px rgba(8, 120, 249, 0.24);
}

.service-detail-secondary-button {
    border: 1px solid #dce5ef;
    background: #ffffff;
    color: #071b33;
}

.service-detail-primary-button:hover,
.service-detail-secondary-button:hover {
    transform: translateY(-3px);
}

.service-detail-primary-button > span:first-child,
.service-detail-secondary-button > span:first-child {
    width: 39px;
    height: 39px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    font-size: 19px;
}

.service-detail-primary-button > span:first-child {
    background: rgba(255, 255, 255, 0.17);
}

.service-detail-secondary-button > span:first-child {
    background: rgba(8, 120, 249, 0.09);
    color: #0878f9;
}

.service-detail-primary-button > span:last-child,
.service-detail-secondary-button > span:last-child {
    display: flex;
    flex-direction: column;
    font-size: 11px;
}

.service-detail-primary-button strong,
.service-detail-secondary-button strong {
    margin-top: 3px;
    font-size: 14px;
}

.service-detail-benefits {
    margin-top: 27px;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.service-detail-benefits div {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #43546a;
    font-size: 13px;
    font-weight: 700;
}

.service-detail-benefits span {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(8, 120, 249, 0.1);
    color: #0878f9;
    display: grid;
    place-items: center;
    font-size: 11px;
}

.service-detail-image-box {
    position: relative;
    min-height: 510px;
    padding: 23px;
    border: 1px solid rgba(8, 120, 249, 0.12);
    border-radius: 35px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 32px 70px rgba(7, 27, 51, 0.13);
    backdrop-filter: blur(12px);
}

.service-detail-image-placeholder {
    width: 100%;
    min-height: 460px;
    padding: 45px;
    border-radius: 25px;
    background:
        linear-gradient(150deg, #0878f9 0%, #0759b8 100%);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.service-detail-image-placeholder > span {
    margin-bottom: 21px;
    font-size: 68px;
}

.service-detail-image-placeholder strong {
    font-size: 25px;
}

.service-detail-image-placeholder small {
    max-width: 315px;
    margin-top: 13px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    line-height: 1.7;
}

.service-detail-experience-card,
.service-detail-free-card {
    position: absolute;
    border: 1px solid #e3eaf2;
    background: #ffffff;
    box-shadow: 0 20px 45px rgba(7, 27, 51, 0.15);
}

.service-detail-experience-card {
    top: 55px;
    right: -35px;
    padding: 18px 21px;
    border-radius: 17px;
    display: flex;
    flex-direction: column;
}

.service-detail-experience-card strong {
    color: #0878f9;
    font-size: 26px;
}

.service-detail-experience-card span {
    margin-top: 3px;
    color: #6e7c8f;
    font-size: 11px;
    font-weight: 700;
}

.service-detail-free-card {
    bottom: 42px;
    left: -45px;
    padding: 16px 20px;
    border-radius: 17px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-detail-free-card > span {
    width: 39px;
    height: 39px;
    border-radius: 12px;
    background: rgba(8, 120, 249, 0.1);
    color: #0878f9;
    display: grid;
    place-items: center;
    font-weight: 900;
}

.service-detail-free-card div {
    display: flex;
    flex-direction: column;
}

.service-detail-free-card small {
    color: #8995a4;
    font-size: 10px;
}

.service-detail-free-card strong {
    margin-top: 2px;
    color: #071b33;
    font-size: 14px;
}

.service-trust-bar {
    border-top: 1px solid #e7edf4;
    border-bottom: 1px solid #e7edf4;
    background: #ffffff;
}

.service-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-trust-item {
    position: relative;
    min-height: 115px;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.service-trust-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 27px;
    right: 0;
    bottom: 27px;
    width: 1px;
    background: #e6edf4;
}

.service-trust-item strong {
    color: #0878f9;
    font-size: 22px;
}

.service-trust-item span {
    margin-top: 4px;
    color: #68788c;
    font-size: 12px;
    font-weight: 700;
}

.service-introduction-section,
.service-list-section,
.service-process-section,
.service-why-us-section,
.service-regions-section,
.service-faq-section {
    padding: 100px 0;
}

.service-introduction-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
    align-items: start;
    gap: 85px;
}

.service-introduction-content h2,
.service-why-us-content h2 {
    margin: 18px 0 25px;
    color: #071b33;
    font-size: clamp(34px, 4vw, 51px);
    line-height: 1.18;
    letter-spacing: -0.035em;
}

.service-introduction-content h2 span,
.service-why-us-content h2 span {
    display: block;
    color: #0878f9;
}

.service-introduction-content p,
.service-why-us-content > p {
    margin: 0 0 18px;
    color: #66768a;
    font-size: 15px;
    line-height: 1.9;
}

.service-information-card {
    padding: 34px;
    border: 1px solid #e2eaf3;
    border-radius: 24px;
    background: #f7faff;
    box-shadow: 0 20px 50px rgba(7, 27, 51, 0.07);
}

.service-information-icon {
    width: 51px;
    height: 51px;
    border-radius: 15px;
    background: #0878f9;
    color: #ffffff;
    display: grid;
    place-items: center;
    font-size: 22px;
    font-weight: 900;
}

.service-information-card h3 {
    margin: 22px 0 12px;
    color: #071b33;
    font-size: 22px;
}

.service-information-card > p {
    color: #6c7b8e;
    font-size: 14px;
    line-height: 1.75;
}

.service-information-card ul {
    margin: 24px 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 13px;
}

.service-information-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #33475e;
    font-size: 13px;
    font-weight: 700;
}

.service-information-card li span {
    color: #0878f9;
}

.service-information-card a {
    width: 100%;
    min-height: 51px;
    padding: 12px 16px;
    border-radius: 13px;
    background: #0878f9;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 800;
}

.service-list-section,
.service-regions-section {
    background: #f6f9fd;
}

.service-detail-grid {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 19px;
}

.service-detail-card {
    padding: 29px 25px;
    border: 1px solid #e1e9f2;
    border-radius: 20px;
    background: #ffffff;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.service-detail-card:hover {
    border-color: rgba(8, 120, 249, 0.25);
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(7, 27, 51, 0.09);
}

.service-detail-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(8, 120, 249, 0.09);
    display: grid;
    place-items: center;
    font-size: 21px;
}

.service-detail-card h3 {
    margin: 20px 0 11px;
    color: #071b33;
    font-size: 17px;
}

.service-detail-card p {
    margin: 0;
    color: #758397;
    font-size: 13px;
    line-height: 1.75;
}

.service-warning-section {
    padding: 95px 0;
    background:
        linear-gradient(135deg, #071b33 0%, #0b315c 100%);
}

.service-warning-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(400px, 1.05fr);
    align-items: center;
    gap: 85px;
}

.service-warning-content h2 {
    margin: 20px 0;
    color: #ffffff;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.service-warning-content h2 span {
    display: block;
    color: #64b1ff;
}

.service-warning-content p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.85;
}

.service-warning-list {
    display: grid;
    gap: 12px;
}

.service-warning-list div {
    min-height: 69px;
    padding: 15px 18px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    gap: 17px;
}

.service-warning-list span {
    width: 37px;
    height: 37px;
    flex-shrink: 0;
    border-radius: 11px;
    background: rgba(100, 177, 255, 0.15);
    color: #64b1ff;
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 900;
}

.service-warning-list p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    line-height: 1.5;
}

.service-process-grid {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.service-process-card {
    position: relative;
    min-height: 255px;
    padding: 32px 25px;
    border: 1px solid #e1e9f2;
    border-radius: 21px;
    background: #ffffff;
    overflow: hidden;
}

.service-process-number {
    color: rgba(8, 120, 249, 0.13);
    font-size: 54px;
    font-weight: 900;
    line-height: 1;
}

.service-process-card h3 {
    margin: 26px 0 12px;
    color: #071b33;
    font-size: 18px;
}

.service-process-card p {
    margin: 0;
    color: #718095;
    font-size: 13px;
    line-height: 1.75;
}

.service-why-us-section {
    border-top: 1px solid #e5ecf4;
    background: #ffffff;
}

.service-why-us-grid {
    display: grid;
    grid-template-columns: minmax(350px, 0.85fr) minmax(0, 1.15fr);
    align-items: center;
    gap: 90px;
}

.service-why-us-visual {
    position: relative;
    min-height: 420px;
}

.service-why-us-main {
    height: 100%;
    min-height: 420px;
    padding: 50px;
    border-radius: 30px;
    background:
        linear-gradient(145deg, #0878f9 0%, #0757ad 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.service-why-us-main strong {
    font-size: 100px;
    line-height: 1;
}

.service-why-us-main span {
    margin-top: 13px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 17px;
    font-weight: 700;
}

.service-why-us-small {
    position: absolute;
    right: -35px;
    bottom: 38px;
    padding: 17px 21px;
    border: 1px solid #e0e8f1;
    border-radius: 17px;
    background: #ffffff;
    display: flex;
    align-items: center;
    gap: 13px;
    box-shadow: 0 22px 50px rgba(7, 27, 51, 0.15);
}

.service-why-us-small > span {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(8, 120, 249, 0.1);
    color: #0878f9;
    display: grid;
    place-items: center;
    font-weight: 900;
}

.service-why-us-small div {
    display: flex;
    flex-direction: column;
}

.service-why-us-small strong {
    color: #071b33;
    font-size: 14px;
}

.service-why-us-small small {
    margin-top: 3px;
    color: #8490a0;
    font-size: 10px;
}

.service-why-us-content ul {
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.service-why-us-content li {
    padding: 17px;
    border: 1px solid #e3eaf2;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    gap: 11px;
}

.service-why-us-content li > span {
    width: 25px;
    height: 25px;
    flex-shrink: 0;
    border-radius: 8px;
    background: rgba(8, 120, 249, 0.1);
    color: #0878f9;
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 900;
}

.service-why-us-content li strong {
    color: #071b33;
    font-size: 13px;
}

.service-why-us-content li p {
    margin: 5px 0 0;
    color: #7c8999;
    font-size: 11px;
    line-height: 1.55;
}

.service-regions-grid {
    margin-top: 42px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 13px;
}

.service-regions-grid div {
    min-height: 65px;
    padding: 15px;
    border: 1px solid #dee7f0;
    border-radius: 14px;
    background: #ffffff;
    color: #31465e;
    display: grid;
    place-items: center;
    font-size: 13px;
    font-weight: 800;
}

.service-faq-container {
    max-width: 950px;
}

.service-faq-list {
    margin-top: 45px;
    display: grid;
    gap: 12px;
}

.service-faq-item {
    border: 1px solid #e1e9f2;
    border-radius: 16px;
    background: #ffffff;
    overflow: hidden;
}

.service-faq-item summary {
    min-height: 72px;
    padding: 19px 22px;
    color: #071b33;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 800;
    list-style: none;
}

.service-faq-item summary::-webkit-details-marker {
    display: none;
}

.service-faq-item summary span {
    width: 31px;
    height: 31px;
    flex-shrink: 0;
    border-radius: 9px;
    background: rgba(8, 120, 249, 0.09);
    color: #0878f9;
    display: grid;
    place-items: center;
    font-size: 19px;
    transition: transform 0.25s ease;
}

.service-faq-item[open] summary span {
    transform: rotate(45deg);
}

.service-faq-item div {
    padding: 0 22px 22px;
}

.service-faq-item p {
    max-width: 800px;
    margin: 0;
    color: #718094;
    font-size: 13px;
    line-height: 1.8;
}

.service-final-cta {
    padding: 35px 0 100px;
}

.service-final-cta-box {
    padding: 48px 52px;
    border-radius: 27px;
    background:
        linear-gradient(130deg, #0878f9 0%, #0757ad 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
    box-shadow: 0 25px 60px rgba(8, 120, 249, 0.22);
}

.service-final-cta-content > span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.service-final-cta-content h2 {
    max-width: 650px;
    margin: 9px 0 11px;
    color: #ffffff;
    font-size: clamp(28px, 4vw, 43px);
    line-height: 1.16;
}

.service-final-cta-content p {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, 0.73);
    font-size: 13px;
    line-height: 1.7;
}

.service-final-cta-buttons {
    min-width: 260px;
    display: grid;
    gap: 10px;
}

.service-final-phone,
.service-final-whatsapp {
    min-height: 59px;
    padding: 12px 17px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    gap: 11px;
}

.service-final-phone {
    background: #ffffff;
    color: #071b33;
}

.service-final-whatsapp {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 800;
}

.service-final-phone > span:first-child {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(8, 120, 249, 0.1);
    color: #0878f9;
    display: grid;
    place-items: center;
}

.service-final-phone > span:last-child {
    display: flex;
    flex-direction: column;
}

.service-final-phone small {
    color: #8290a1;
    font-size: 9px;
}

.service-final-phone strong {
    margin-top: 2px;
    font-size: 13px;
}

@media (max-width: 1100px) {

    .service-detail-hero-grid,
    .service-introduction-grid,
    .service-warning-grid,
    .service-why-us-grid {
        gap: 45px;
    }

    .service-detail-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(330px, 0.8fr);
    }

    .service-detail-grid,
    .service-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 850px) {

    .service-detail-hero {
        padding: 65px 0 75px;
    }

    .service-detail-hero-grid,
    .service-introduction-grid,
    .service-warning-grid,
    .service-why-us-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-hero-content h1 {
        font-size: 43px;
    }

    .service-detail-hero-visual {
        margin-top: 15px;
    }

    .service-detail-image-box {
        min-height: 420px;
    }

    .service-detail-image-placeholder {
        min-height: 370px;
    }

    .service-detail-experience-card {
        right: 10px;
    }

    .service-detail-free-card {
        left: 10px;
    }

    .service-trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-trust-item:nth-child(2)::after {
        display: none;
    }

    .service-trust-item:nth-child(-n + 2) {
        border-bottom: 1px solid #e6edf4;
    }

    .service-why-us-visual {
        max-width: 520px;
    }

    .service-final-cta-box {
        align-items: stretch;
        flex-direction: column;
    }

    .service-final-cta-buttons {
        width: 100%;
    }

}

@media (max-width: 600px) {

    .service-detail-hero {
        padding: 48px 0 60px;
    }

    .service-detail-hero-content h1 {
        font-size: 35px;
    }

    .service-detail-hero-content > p {
        font-size: 15px;
    }

    .service-detail-hero-buttons {
        align-items: stretch;
        flex-direction: column;
    }

    .service-detail-primary-button,
    .service-detail-secondary-button {
        width: 100%;
    }

    .service-detail-image-box {
        min-height: 355px;
        padding: 13px;
        border-radius: 24px;
    }

    .service-detail-image-placeholder {
        min-height: 325px;
        padding: 30px 20px;
        border-radius: 18px;
    }

    .service-detail-image-placeholder > span {
        font-size: 53px;
    }

    .service-detail-experience-card {
        top: 25px;
        right: 2px;
    }

    .service-detail-free-card {
        left: 2px;
        bottom: 22px;
    }

    .service-introduction-section,
    .service-list-section,
    .service-process-section,
    .service-why-us-section,
    .service-regions-section,
    .service-faq-section {
        padding: 70px 0;
    }

    .service-detail-grid,
    .service-process-grid,
    .service-why-us-content ul,
    .service-regions-grid {
        grid-template-columns: 1fr;
    }

    .service-warning-section {
        padding: 70px 0;
    }

    .service-warning-grid {
        gap: 40px;
    }

    .service-why-us-main {
        min-height: 340px;
    }

    .service-why-us-main strong {
        font-size: 78px;
    }

    .service-why-us-small {
        right: 8px;
    }

    .service-final-cta {
        padding: 20px 0 70px;
    }

    .service-final-cta-box {
        padding: 35px 23px;
    }

}

.services-page-hero .page-hero-content {
    max-width: 760px;
}

.services-hero-features {
    margin-top: 28px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px 22px;
}

.services-hero-features div {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #43556c;
    font-size: 12px;
    font-weight: 800;
}

.services-hero-features span {
    width: 23px;
    height: 23px;
    border-radius: 50%;
    background: rgba(8, 120, 249, 0.1);
    color: #0878f9;
    display: grid;
    place-items: center;
    font-size: 11px;
}

.services-hero-info {
    min-height: 430px;
}

.services-trust-section {
    border-top: 1px solid #e5ecf3;
    border-bottom: 1px solid #e5ecf3;
    background: #ffffff;
}

.services-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.services-trust-item {
    position: relative;
    min-height: 120px;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.services-trust-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 29px;
    right: 0;
    bottom: 29px;
    width: 1px;
    background: #e3eaf2;
}

.services-trust-item strong {
    color: #0878f9;
    font-size: 23px;
}

.services-trust-item span {
    margin-top: 5px;
    color: #718095;
    font-size: 12px;
    font-weight: 700;
}

.new-services-section {
    padding: 105px 0;
    background: #f6f9fd;
}

.new-services-grid {
    margin-top: 52px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.new-service-card {
    position: relative;
    min-height: 580px;
    border: 1px solid #dfe8f1;
    border-radius: 24px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease;
}

.new-service-card:hover {
    border-color: rgba(8, 120, 249, 0.24);
    transform: translateY(-8px);
    box-shadow: 0 24px 55px rgba(7, 27, 51, 0.1);
}

.new-service-card-top {
    position: relative;
    min-height: 155px;
    padding: 25px;
    background:
        linear-gradient(140deg, #0878f9 0%, #0759b8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.new-service-number {
    position: absolute;
    top: 19px;
    left: 21px;
    color: rgba(255, 255, 255, 0.28);
    font-size: 41px;
    font-weight: 900;
    line-height: 1;
}

.new-service-icon {
    width: 74px;
    height: 74px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 21px;
    background: rgba(255, 255, 255, 0.13);
    color: #ffffff;
    display: grid;
    place-items: center;
    font-size: 33px;
    backdrop-filter: blur(8px);
}

.new-service-card-content {
    padding: 29px 27px 24px;
    flex: 1;
}

.new-service-label {
    color: #0878f9;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.new-service-card-content h2 {
    margin: 10px 0 15px;
    color: #071b33;
    font-size: 24px;
    line-height: 1.25;
}

.new-service-card-content > p {
    margin: 0;
    color: #728195;
    font-size: 13px;
    line-height: 1.78;
}

.new-service-card-content ul {
    margin: 23px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 11px;
}

.new-service-card-content li {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #3f526a;
    font-size: 12px;
    font-weight: 700;
}

.new-service-card-content li span {
    width: 21px;
    height: 21px;
    flex-shrink: 0;
    border-radius: 7px;
    background: rgba(8, 120, 249, 0.09);
    color: #0878f9;
    display: grid;
    place-items: center;
    font-size: 10px;
}

.new-service-button {
    min-height: 61px;
    padding: 16px 27px;
    border-top: 1px solid #e4ebf3;
    color: #0878f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 900;
    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.new-service-button:hover {
    background: #0878f9;
    color: #ffffff;
}

.new-service-button span {
    font-size: 18px;
}

.services-information-section {
    padding: 105px 0;
    background: #ffffff;
}

.services-information-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(370px, 0.92fr);
    align-items: center;
    gap: 85px;
}

.services-information-content h2 {
    margin: 18px 0 24px;
    color: #071b33;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.16;
    letter-spacing: -0.035em;
}

.services-information-content h2 span {
    display: block;
    color: #0878f9;
}

.services-information-content p {
    margin: 0 0 17px;
    color: #68788c;
    font-size: 14px;
    line-height: 1.9;
}

.services-information-content > a {
    width: fit-content;
    min-height: 53px;
    margin-top: 15px;
    padding: 13px 19px;
    border-radius: 13px;
    background: #0878f9;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 28px;
    font-size: 13px;
    font-weight: 900;
}

.services-information-box {
    padding: 34px;
    border: 1px solid #dfe8f1;
    border-radius: 25px;
    background: #f7faff;
    box-shadow: 0 24px 55px rgba(7, 27, 51, 0.08);
}

.services-information-box-label {
    color: #0878f9;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.services-information-box h3 {
    margin: 10px 0 25px;
    color: #071b33;
    font-size: 24px;
    line-height: 1.3;
}

.services-information-list {
    display: grid;
    gap: 13px;
}

.services-information-list > div {
    padding: 16px;
    border: 1px solid #e0e8f1;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.services-information-list > div > span {
    width: 35px;
    height: 35px;
    flex-shrink: 0;
    border-radius: 10px;
    background: rgba(8, 120, 249, 0.1);
    color: #0878f9;
    display: grid;
    place-items: center;
    font-size: 10px;
    font-weight: 900;
}

.services-information-list strong {
    color: #071b33;
    font-size: 13px;
}

.services-information-list p {
    margin: 5px 0 0;
    color: #7b899a;
    font-size: 11px;
    line-height: 1.6;
}

.services-process-section {
    padding: 105px 0;
    border-top: 1px solid #e4ebf3;
    background: #f7faff;
}

.services-process-grid {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.services-process-card {
    min-height: 270px;
    padding: 30px 25px;
    border: 1px solid #dfe8f1;
    border-radius: 21px;
    background: #ffffff;
}

.services-process-card > span {
    color: rgba(8, 120, 249, 0.15);
    font-size: 56px;
    font-weight: 900;
    line-height: 1;
}

.services-process-card h3 {
    margin: 25px 0 12px;
    color: #071b33;
    font-size: 18px;
}

.services-process-card p {
    margin: 0;
    color: #748397;
    font-size: 13px;
    line-height: 1.75;
}

.services-experience-section {
    padding: 105px 0;
    background:
        linear-gradient(135deg, #071b33 0%, #0b315c 100%);
}

.services-experience-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
    align-items: center;
    gap: 90px;
}

.services-experience-number {
    min-height: 390px;
    padding: 45px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 29px;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.services-experience-number strong {
    color: #64b1ff;
    font-size: 115px;
    line-height: 1;
}

.services-experience-number span {
    margin-top: 13px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
    font-weight: 800;
}

.services-experience-content h2 {
    margin: 19px 0 22px;
    color: #ffffff;
    font-size: clamp(35px, 4vw, 53px);
    line-height: 1.16;
    letter-spacing: -0.035em;
}

.services-experience-content h2 span {
    display: block;
    color: #64b1ff;
}

.services-experience-content > p {
    max-width: 700px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.85;
}

.services-experience-features {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.services-experience-features div {
    min-height: 58px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.055);
    display: flex;
    align-items: center;
    gap: 11px;
}

.services-experience-features span {
    width: 27px;
    height: 27px;
    flex-shrink: 0;
    border-radius: 8px;
    background: rgba(100, 177, 255, 0.16);
    color: #64b1ff;
    display: grid;
    place-items: center;
    font-size: 11px;
}

.services-experience-features strong {
    color: rgba(255, 255, 255, 0.85);
    font-size: 12px;
}

.services-regions-section {
    padding: 105px 0;
    background: #f6f9fd;
}

.services-regions-grid {
    margin-top: 45px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.services-regions-grid div {
    min-height: 70px;
    padding: 16px;
    border: 1px solid #dfe8f1;
    border-radius: 15px;
    background: #ffffff;
    color: #34485f;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 13px;
    font-weight: 800;
}

.services-regions-grid span {
    color: #0878f9;
    font-size: 17px;
}

.services-faq-section {
    padding: 105px 0;
    background: #ffffff;
}

.services-faq-container {
    max-width: 950px;
}

.services-faq-list {
    margin-top: 45px;
    display: grid;
    gap: 12px;
}

.services-faq-item {
    border: 1px solid #dfe8f1;
    border-radius: 16px;
    background: #ffffff;
    overflow: hidden;
}

.services-faq-item summary {
    min-height: 72px;
    padding: 19px 22px;
    color: #071b33;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    list-style: none;
    font-size: 14px;
    font-weight: 900;
}

.services-faq-item summary::-webkit-details-marker {
    display: none;
}

.services-faq-item summary span {
    width: 31px;
    height: 31px;
    flex-shrink: 0;
    border-radius: 9px;
    background: rgba(8, 120, 249, 0.09);
    color: #0878f9;
    display: grid;
    place-items: center;
    font-size: 19px;
    transition: transform 0.25s ease;
}

.services-faq-item[open] summary span {
    transform: rotate(45deg);
}

.services-faq-item > div {
    padding: 0 22px 22px;
}

.services-faq-item p {
    margin: 0;
    color: #718094;
    font-size: 13px;
    line-height: 1.8;
}

@media (max-width: 1100px) {

    .new-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .services-information-grid,
    .services-experience-grid {
        gap: 50px;
    }

    .services-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 850px) {

    .services-trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .services-trust-item:nth-child(2)::after {
        display: none;
    }

    .services-trust-item:nth-child(-n + 2) {
        border-bottom: 1px solid #e3eaf2;
    }

    .services-information-grid,
    .services-experience-grid {
        grid-template-columns: 1fr;
    }

    .services-experience-number {
        min-height: 320px;
    }

    .services-regions-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 600px) {

    .services-hero-features {
        align-items: flex-start;
        flex-direction: column;
    }

    .new-services-section,
    .services-information-section,
    .services-process-section,
    .services-experience-section,
    .services-regions-section,
    .services-faq-section {
        padding: 70px 0;
    }

    .new-services-grid,
    .services-process-grid,
    .services-experience-features,
    .services-regions-grid {
        grid-template-columns: 1fr;
    }

    .new-service-card {
        min-height: auto;
    }

    .new-service-card-top {
        min-height: 135px;
    }

    .services-information-box {
        padding: 27px 20px;
    }

    .services-experience-number strong {
        font-size: 90px;
    }

    .services-experience-number span {
        font-size: 15px;
    }

}

.services-showcase-image {
    position: relative;
    width: 100%;
    min-height: 550px;
    border-radius: 30px;
    overflow: visible;
    background: #0b68da;
    box-shadow: 0 24px 65px rgba(10, 45, 85, 0.15);
}

.services-showcase-image > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.services-showcase-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: 30px;
    background:
        linear-gradient(
            180deg,
            rgba(3, 23, 48, 0.18) 0%,
            rgba(3, 23, 48, 0.5) 100%
        );
}

.services-showcase-content {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    width: calc(100% - 80px);
    text-align: center;
    transform: translate(-50%, -50%);
    color: #ffffff;
}

.services-showcase-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin: 0 auto 28px;
    border-radius: 22px;
    font-size: 32px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.services-showcase-content h2 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.2;
}

.services-showcase-content p {
    max-width: 520px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    line-height: 1.8;
}

.services-showcase-experience {
    position: absolute;
    z-index: 3;
    top: 55px;
    right: -45px;
    display: flex;
    flex-direction: column;
    min-width: 165px;
    padding: 28px 25px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 16px 45px rgba(6, 35, 70, 0.15);
}

.services-showcase-experience strong {
    color: #0872ed;
    font-size: 30px;
    line-height: 1;
}

.services-showcase-experience span {
    margin-top: 10px;
    color: #627085;
    font-size: 13px;
}

.services-showcase-discovery {
    position: absolute;
    z-index: 3;
    bottom: 48px;
    left: -28px;
    display: flex;
    flex-direction: column;
    min-width: 170px;
    padding: 20px 26px;
    border-radius: 0 20px 20px 0;
    background: #ffffff;
    box-shadow: 0 16px 45px rgba(6, 35, 70, 0.15);
}

.services-showcase-discovery small {
    margin-bottom: 5px;
    color: #77859a;
    font-size: 12px;
}

.services-showcase-discovery strong {
    color: #071e3b;
    font-size: 17px;
}

.services-section .services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
}

.services-section .service-card.service-image-card {
    position: relative;
    display: block;
    min-height: 380px;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(174, 202, 234, 0.55);
    border-radius: 24px;
    background: #062445;
    box-shadow: 0 14px 40px rgba(6, 34, 69, 0.08);
    isolation: isolate;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.service-image-background {
    position: absolute;
    inset: -15px;
    z-index: 0;
    background-image: var(--service-bg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: blur(3px);
    transform: scale(1.08);
    transition:
        filter 0.4s ease,
        transform 0.5s ease;
}

.service-image-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            145deg,
            rgba(2, 24, 49, 0.88) 0%,
            rgba(4, 43, 83, 0.79) 55%,
            rgba(3, 28, 56, 0.9) 100%
        );
}

.service-image-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    min-height: 380px;
    padding: 32px;
}

.service-image-card .service-card-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin: 0;
}

.service-image-card .service-number {
    color: rgba(255, 255, 255, 0.75);
}

.service-image-card .service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 19px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.13);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.service-image-card h3 {
    position: relative;
    z-index: 2;
    margin: 38px 0 16px;
    color: #ffffff;
    font-size: 23px;
    line-height: 1.35;
}

.service-image-card p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.8;
}

.service-image-card a {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    align-self: flex-start;
    margin-top: auto;
    padding-top: 30px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.service-image-card a span {
    transition: transform 0.3s ease;
}

.service-card.service-image-card::before,
.service-card.service-image-card::after {
    display: none;
}

.service-card.service-image-card:hover {
    border-color: rgba(42, 132, 235, 0.75);
    box-shadow: 0 22px 55px rgba(4, 35, 72, 0.2);
    transform: translateY(-6px);
}

.service-card.service-image-card:hover .service-image-background {
    filter: blur(1px);
    transform: scale(1.13);
}

.service-card.service-image-card:hover a span {
    transform: translateX(6px);
}

@media (max-width: 1100px) {
    .services-section .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .services-section .services-grid {
        grid-template-columns: 1fr;
    }

    .services-section .service-card.service-image-card,
    .service-image-content {
        min-height: 350px;
    }

    .service-image-content {
        padding: 27px;
    }

    .service-image-card h3 {
        margin-top: 32px;
        font-size: 21px;
    }

    .service-image-card p {
        font-size: 14px;
    }
}
.services-photo-grid-fixed-start {
    display: none;
}

.services-section .services-photo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
}

.services-section .services-photo-card {
    position: relative;
    display: block;
    min-height: 340px;
    overflow: hidden;
    border: 1px solid rgba(174, 202, 234, 0.55);
    border-radius: 24px;
    background: #082746;
    box-shadow: 0 14px 40px rgba(6, 34, 69, 0.08);
    isolation: isolate;
    text-decoration: none;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.services-section .services-photo-card-background {
    position: absolute;
    inset: -10px;
    z-index: 0;
    background-image: var(--service-image);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: blur(1.5px);
    transform: scale(1.06);
    transition: transform 0.45s ease, filter 0.35s ease;
}

.services-section .services-photo-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(145deg, rgba(3, 25, 49, 0.72) 0%, rgba(5, 48, 91, 0.58) 58%, rgba(3, 28, 56, 0.74) 100%);
}

.services-section .services-photo-card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    min-height: 340px;
    padding: 30px;
}

.services-section .services-photo-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.services-section .services-photo-number {
    color: rgba(255,255,255,.82);
    font-size: 12px;
    font-weight: 600;
}

.services-section .services-photo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 17px;
    color: #fff;
    font-size: 23px;
    background: rgba(255,255,255,.14);
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
}

.services-section .services-photo-card-text {
    margin-top: 32px;
}

.services-section .services-photo-card-text h3 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 22px;
    line-height: 1.35;
    text-shadow: 0 2px 14px rgba(0,0,0,.28);
}

.services-section .services-photo-card-text p {
    margin: 0;
    color: rgba(255,255,255,.88);
    font-size: 14px;
    line-height: 1.75;
    text-shadow: 0 1px 10px rgba(0,0,0,.22);
}

.services-section .services-photo-link {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-top: auto;
    padding-top: 26px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.services-section .services-photo-link strong {
    transition: transform .3s ease;
}

.services-section .services-photo-card:hover {
    transform: translateY(-6px);
    border-color: rgba(42,132,235,.8);
    box-shadow: 0 22px 55px rgba(4,35,72,.2);
}

.services-section .services-photo-card:hover .services-photo-card-background {
    filter: blur(0);
    transform: scale(1.11);
}

.services-section .services-photo-card:hover .services-photo-link strong {
    transform: translateX(6px);
}

.service-detail-image-media {
    position: relative;
    width: 100%;
    min-height: 460px;
    overflow: hidden;
    border-radius: 25px;
    background: #0759b8;
}

.service-detail-image-media > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.service-detail-image-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(4,29,55,.12) 0%, rgba(4,31,61,.48) 100%);
}

.service-detail-image-caption {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    z-index: 2;
    padding: 22px 24px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 18px;
    color: #fff;
    background: rgba(4,30,58,.58);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.service-detail-image-caption strong {
    display: block;
    color: #fff;
    font-size: 24px;
    line-height: 1.25;
}

.service-detail-image-caption small {
    display: block;
    margin-top: 8px;
    color: rgba(255,255,255,.86);
    font-size: 13px;
    line-height: 1.6;
}

@media (max-width: 1100px) {
    .services-section .services-photo-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
}

@media (max-width: 700px) {
    .services-section .services-photo-grid {
        grid-template-columns: 1fr;
    }

    .services-section .services-photo-card,
    .services-section .services-photo-card-content {
        min-height: 330px;
    }

    .services-section .services-photo-card-content {
        padding: 26px;
    }

    .service-detail-image-media {
        min-height: 400px;
    }

    .service-detail-image-caption {
        left: 18px;
        right: 18px;
        bottom: 18px;
        padding: 18px;
    }

    .service-detail-image-caption strong {
        font-size: 20px;
    }
}

.home-hero-photo{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center center;
    border-radius:38px;
}

.hero-image-wrapper {
    overflow: hidden;
}

.hero-visual {
    width: 100%;
}

.hero-image-wrapper {
    position: relative;
    width: min(100%, 620px);
    max-width: 620px;
    aspect-ratio: 16 / 10;
    min-height: 500px;
    margin-left: auto;
    overflow: visible;
    border-radius: 34px 34px 90px 34px;
    background: #eaf4ff;
    box-shadow: 0 30px 70px rgba(7, 27, 51, 0.16);
}

.home-hero-photo {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    object-position: center;
    border-radius: 34px 34px 90px 34px;
}

.hero-image-wrapper .experience-card,
.hero-image-wrapper .service-area-card {
    z-index: 3;
}

.services-section .services-photo-card-background {
    background-image: var(--service-image) !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    opacity: 1 !important;
}

.services-section .services-photo-card-overlay {
    background: linear-gradient(145deg, rgba(2, 24, 49, 0.68) 0%, rgba(4, 43, 83, 0.52) 55%, rgba(3, 28, 56, 0.72) 100%) !important;
}

.service-detail-image-media {
    position: relative;
    width: 100%;
    min-height: 460px;
    overflow: hidden;
    border-radius: 25px;
    background: #0759b8;
}

.service-detail-image-media > img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 850px) {
    .hero-image-wrapper {
        width: min(100%, 650px);
        margin-inline: auto;
    }
}

@media (max-width: 600px) {
    .hero-image-wrapper {
        min-height: 390px;
        aspect-ratio: auto;
        border-radius: 26px 26px 65px 26px;
    }

    .home-hero-photo {
        min-height: 390px;
        border-radius: 26px 26px 65px 26px;
    }
}

.about-story-photo-box {
    position: relative;
    min-height: 500px;
    padding: 0;
    overflow: hidden;
    border-radius: 30px;
    background: #082b52;
    isolation: isolate;
}

.about-story-photo {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.about-story-photo-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(4, 24, 47, 0.08) 30%, rgba(4, 24, 47, 0.88) 100%);
}

.about-story-photo-content {
    position: absolute;
    z-index: 2;
    left: 38px;
    right: 38px;
    bottom: 42px;
    color: #ffffff;
}

.about-story-photo-content strong {
    display: block;
    max-width: 420px;
    color: #ffffff;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.15;
}

.about-story-photo-content p {
    max-width: 450px;
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.75;
}

.contact-page-hero .page-hero-container {
    align-items: center;
}

.contact-hero-actions {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.contact-hero-action {
    min-height: 68px;
    padding: 12px 18px;
    border: 1px solid #dfe7f0;
    border-radius: 16px;
    background: #ffffff;
    color: #071b33;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 14px 32px rgba(7, 27, 51, 0.08);
    transition: transform .25s ease, box-shadow .25s ease;
}

.contact-hero-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 42px rgba(7, 27, 51, 0.13);
}

.contact-action-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 12px;
    background: rgba(8, 120, 249, 0.1);
    color: #0878f9;
    display: grid;
    place-items: center;
    font-size: 18px;
}

.whatsapp-action-icon {
    background: rgba(36, 184, 106, 0.12);
    color: #20a962;
}

.contact-hero-action > span:last-child {
    display: flex;
    flex-direction: column;
}

.contact-hero-action small {
    color: #8793a3;
    font-size: 10px;
}

.contact-hero-action strong {
    margin-top: 3px;
    color: #071b33;
    font-size: 14px;
}

.contact-hero-card {
    position: relative;
    min-height: 420px;
    padding: 44px;
    border: 1px solid rgba(8, 120, 249, 0.13);
    border-radius: 31px;
    background: linear-gradient(145deg, #0878f9 0%, #0759b8 100%);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 28px 65px rgba(7, 69, 145, 0.22);
    overflow: hidden;
}

.contact-hero-card::after {
    content: '';
    position: absolute;
    width: 240px;
    height: 240px;
    right: -90px;
    bottom: -110px;
    border: 35px solid rgba(255, 255, 255, 0.07);
    border-radius: 50%;
}

.contact-hero-card-icon {
    position: relative;
    z-index: 1;
    width: 67px;
    height: 67px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.14);
    display: grid;
    place-items: center;
    font-size: 29px;
}

.contact-hero-card > span,
.contact-hero-card > strong,
.contact-hero-card > p,
.contact-working-hours {
    position: relative;
    z-index: 1;
}

.contact-hero-card > span {
    margin-top: 28px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.contact-hero-card > strong {
    margin-top: 8px;
    color: #ffffff;
    font-size: 31px;
}

.contact-hero-card > p {
    max-width: 420px;
    margin: 15px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    line-height: 1.75;
}

.contact-working-hours {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.contact-working-hours > div {
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
}

.contact-working-hours span {
    color: rgba(255, 255, 255, 0.63);
    font-size: 10px;
}

.contact-working-hours strong {
    margin-top: 5px;
    color: #ffffff;
    font-size: 12px;
}

.contact-main-section {
    padding: 105px 0;
    background: #ffffff;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr);
    align-items: start;
    gap: 75px;
}

.contact-information h2 {
    margin: 18px 0 17px;
    color: #071b33;
    font-size: clamp(34px, 4vw, 51px);
    line-height: 1.16;
    letter-spacing: -.035em;
}

.contact-information h2 span {
    display: block;
    color: #0878f9;
}

.contact-information-description {
    max-width: 560px;
    margin: 0;
    color: #68788c;
    font-size: 14px;
    line-height: 1.85;
}

.contact-information-list {
    margin-top: 31px;
    display: grid;
    gap: 13px;
}

.contact-information-card {
    min-height: 92px;
    padding: 17px 18px;
    border: 1px solid #dfe8f1;
    border-radius: 18px;
    background: #ffffff;
    color: #071b33;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.contact-information-card:hover {
    transform: translateY(-3px);
    border-color: rgba(8, 120, 249, .25);
    box-shadow: 0 18px 40px rgba(7, 27, 51, .08);
}

.contact-information-icon {
    width: 51px;
    height: 51px;
    flex-shrink: 0;
    border-radius: 15px;
    background: rgba(8, 120, 249, .1);
    color: #0878f9;
    display: grid;
    place-items: center;
    font-size: 20px;
}

.contact-whatsapp-icon {
    background: rgba(36, 184, 106, .12);
    color: #20a962;
}

.contact-information-text {
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-information-text small {
    color: #8793a3;
    font-size: 10px;
}

.contact-information-text strong {
    margin-top: 4px;
    color: #071b33;
    font-size: 15px;
}

.contact-information-text em {
    margin-top: 4px;
    color: #77869a;
    font-size: 11px;
    font-style: normal;
}

.contact-information-arrow {
    color: #0878f9;
    font-size: 20px;
}

.contact-form-wrapper {
    padding: 38px;
    border: 1px solid #dfe8f1;
    border-radius: 27px;
    background: #f7faff;
    box-shadow: 0 24px 60px rgba(7, 27, 51, .09);
}

.contact-form-heading > span {
    color: #0878f9;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.contact-form-heading h2 {
    margin: 9px 0 10px;
    color: #071b33;
    font-size: 31px;
}

.contact-form-heading p {
    margin: 0;
    color: #748397;
    font-size: 13px;
    line-height: 1.7;
}

.contact-form {
    margin-top: 27px;
    display: grid;
    gap: 17px;
}

.contact-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
}

.contact-form .form-group {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form label {
    color: #24384f;
    font-size: 12px;
    font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    min-height: 54px;
    padding: 13px 15px;
    border: 1px solid #dbe5ef;
    border-radius: 13px;
    outline: none;
    background: #ffffff;
    color: #071b33;
    font: inherit;
    font-size: 13px;
    transition: border-color .25s ease, box-shadow .25s ease;
}

.contact-form textarea {
    min-height: 145px;
    resize: vertical;
    line-height: 1.6;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #0878f9;
    box-shadow: 0 0 0 4px rgba(8, 120, 249, .1);
}

.contact-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #66768a;
    font-size: 11px;
    line-height: 1.55;
}

.contact-consent input {
    width: 17px;
    height: 17px;
    min-height: 0;
    margin-top: 1px;
    flex-shrink: 0;
}

.contact-submit-button {
    min-height: 58px;
    padding: 14px 18px;
    border: 0;
    border-radius: 14px;
    background: #24b86a;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 15px 32px rgba(36, 184, 106, .2);
    transition: transform .25s ease, box-shadow .25s ease;
}

.contact-submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 42px rgba(36, 184, 106, .27);
}

.contact-form-status {
    min-height: 20px;
    color: #20a962;
    font-size: 12px;
    font-weight: 700;
}

.contact-map-section {
    padding: 0 0 105px;
    background: #ffffff;
}

.contact-map-box {
    min-height: 390px;
    border: 1px solid #dfe8f1;
    border-radius: 28px;
    background: #f5f9fd;
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
    overflow: hidden;
}

.contact-map-content {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-map-content h2 {
    margin: 17px 0 13px;
    color: #071b33;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.18;
}

.contact-map-content h2 span {
    color: #0878f9;
}

.contact-map-content p {
    margin: 0;
    color: #6f7f92;
    font-size: 13px;
    line-height: 1.75;
}

.contact-map-button {
    width: fit-content;
    min-height: 52px;
    margin-top: 23px;
    padding: 12px 18px;
    border-radius: 13px;
    background: #0878f9;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 25px;
    font-size: 12px;
    font-weight: 900;
}
.contact-map-placeholder{
    width:100%;
    min-height:420px;
    overflow:hidden;
    border-radius:24px;
    border:1px solid #dbe5ef;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
}

.contact-map-placeholder iframe{
    width:100%;
    height:420px;
    border:0;
    display:block;
}

@media(max-width:768px){

.contact-map-placeholder iframe{
    height:320px;
}

}

@media (max-width: 850px) {
    .contact-hero-card {
        min-height: 370px;
    }

    .contact-emergency-box {
        align-items: stretch;
        flex-direction: column;
    }

    .contact-emergency-actions {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .about-story-photo-box {
        min-height: 420px;
    }

    .about-story-photo-content {
        left: 24px;
        right: 24px;
        bottom: 29px;
    }

    .about-story-small-box {
        right: 10px;
    }

    .contact-hero-actions,
    .contact-form-row,
    .contact-working-hours {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .contact-hero-action {
        width: 100%;
    }

    .contact-hero-card {
        min-height: 350px;
        padding: 30px 23px;
    }

    .contact-main-section {
        padding: 70px 0;
    }

    .contact-form-wrapper {
        padding: 28px 20px;
        border-radius: 21px;
    }

    .contact-map-section {
        padding-bottom: 70px;
    }

    .contact-map-content {
        padding: 35px 23px;
    }

    .contact-emergency-section {
        padding-bottom: 70px;
    }

    .contact-emergency-box {
        padding: 34px 23px;
    }
}

.about-feature-card,
.about-image-card{
    bottom:-35px !important;
    right:-35px !important;
}

.about-customer-card {
    position: absolute;
    z-index: 10;
    right: -35px;
    bottom: -55px;
    width: 340px;
    min-height: 120px;
    padding: 28px 30px;
    border: 1px solid #e3eaf2;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 22px 55px rgba(7, 27, 51, 0.16);
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.about-customer-card strong {
    display: block;
    margin: 0;
    color: #0878f9;
    font-size: 19px;
    font-weight: 800;
    line-height: 1.3;
}

.about-customer-card span {
    display: block;
    margin-top: 9px;
    color: #748397;
    font-size: 13px;
    line-height: 1.6;
}

.about-photo-wrapper,
.about-image-wrapper,
.about-story-visual,
.about-page-visual {
    position: relative;
    overflow: visible;
    margin-bottom: 75px;
}

@media (max-width: 900px) {
    .about-customer-card {
        right: 20px;
        bottom: -45px;
        width: 310px;
    }
}

@media (max-width: 600px) {
    .about-customer-card {
        right: 12px;
        left: 12px;
        bottom: -55px;
        width: auto;
        min-height: 105px;
        padding: 22px;
        border-radius: 19px;
    }

    .about-customer-card strong {
        font-size: 17px;
    }

    .about-customer-card span {
        font-size: 12px;
    }
}

.hero-image-wrapper {
    position: relative;
    overflow: visible;
}

.hero-image-wrapper .experience-card {
    position: absolute !important;
    z-index: 20 !important;
    top: 50px !important;
    right: -25px !important;
    bottom: auto !important;
    left: auto !important;
    width: 150px !important;
    min-width: 150px !important;
    min-height: 105px !important;
    height: auto !important;
    padding: 18px 20px !important;
    border: 1px solid #e2e9f1 !important;
    border-radius: 19px !important;
    background: #ffffff !important;
    box-shadow: 0 18px 45px rgba(7, 27, 51, 0.15) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    gap: 7px !important;
    text-align: left !important;
}

.hero-image-wrapper .experience-card strong {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    color: #0878f9 !important;
    font-size: 27px !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
}

.hero-image-wrapper .experience-card span {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    color: #69788d !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
    white-space: normal !important;
}

.hero-image-wrapper .service-area-card {
    position: absolute !important;
    z-index: 20 !important;
}

.service-detail-image-box {
    position: relative;
    overflow: visible !important;
    margin-bottom: 55px !important;
}

.service-detail-image-box .service-detail-experience-card {
    position: absolute !important;
    z-index: 20 !important;
    top: 55px !important;
    right: -35px !important;
    left: auto !important;
    bottom: auto !important;
}

.service-detail-image-box .service-detail-free-card {
    position: absolute !important;
    z-index: 30 !important;
    left: -20px !important;
    right: auto !important;
    bottom: -30px !important;
    top: auto !important;
    width: auto !important;
    min-width: 225px !important;
    min-height: 78px !important;
    padding: 15px 20px !important;
    border: 1px solid #e3eaf2 !important;
    border-radius: 18px !important;
    background: #ffffff !important;
    box-shadow: 0 20px 45px rgba(7, 27, 51, 0.16) !important;
    display: flex !important;
    align-items: center !important;
    gap: 13px !important;
}

.service-detail-image-box .service-detail-free-card > span {
    width: 44px !important;
    height: 44px !important;
    flex-shrink: 0 !important;
    border-radius: 13px !important;
    background: rgba(8, 120, 249, 0.1) !important;
    color: #0878f9 !important;
    display: grid !important;
    place-items: center !important;
    font-size: 17px !important;
    font-weight: 900 !important;
}

.service-detail-image-box .service-detail-free-card div {
    min-width: 0 !important;
    display: flex !important;
    flex-direction: column !important;
}

.service-detail-image-box .service-detail-free-card small {
    display: block !important;
    margin: 0 0 4px !important;
    color: #8995a4 !important;
    font-size: 10px !important;
    line-height: 1.3 !important;
    white-space: nowrap !important;
}

.service-detail-image-box .service-detail-free-card strong {
    display: block !important;
    margin: 0 !important;
    color: #071b33 !important;
    font-size: 15px !important;
    line-height: 1.3 !important;
    white-space: nowrap !important;
}

@media (max-width: 1000px) {
    .hero-image-wrapper .experience-card {
        top: 25px !important;
        right: 15px !important;
    }

    .service-detail-image-box .service-detail-experience-card {
        right: 12px !important;
    }

    .service-detail-image-box .service-detail-free-card {
        left: 12px !important;
        bottom: -28px !important;
    }
}

@media (max-width: 600px) {
    .hero-image-wrapper .experience-card {
        top: 14px !important;
        right: 10px !important;
        width: 132px !important;
        min-width: 132px !important;
        min-height: 88px !important;
        padding: 14px 16px !important;
        border-radius: 16px !important;
    }

    .hero-image-wrapper .experience-card strong {
        font-size: 23px !important;
    }

    .hero-image-wrapper .experience-card span {
        font-size: 9px !important;
    }

    .service-detail-image-box {
        margin-bottom: 65px !important;
    }

    .service-detail-image-box .service-detail-free-card {
        left: 10px !important;
        right: 10px !important;
        bottom: -50px !important;
        width: auto !important;
        min-width: 0 !important;
    }

    .service-detail-image-box .service-detail-free-card strong {
        white-space: normal !important;
    }
}

.contact-map-box {
    width: 100%;
    margin-top: 35px;
    overflow: hidden;
    border: 1px solid #dfe8f1;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(7, 27, 51, 0.1);
}

.contact-map-box iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: 0;
}

@media (max-width: 700px) {
    .contact-map-box iframe {
        height: 340px;
    }
}

.location-map-section{
    padding:80px 0;
    background:#f5f8fb;
}

.location-map-heading{
    max-width:760px;
    margin:0 auto 35px;
    text-align:center;
}

.location-map-heading h1{
    margin:15px 0;
    font-size:clamp(34px,5vw,56px);
    line-height:1.1;
    color:#10253d;
}

.location-map-heading h1 span{
    display:block;
    color:#1477c9;
}

.location-map-heading p{
    margin:0;
    color:#607286;
    font-size:17px;
    line-height:1.8;
}

.location-map-box{
    width:100%;
    overflow:hidden;
    border-radius:26px;
    border:1px solid #dbe5ef;
    background:#fff;
    box-shadow:0 22px 55px rgba(12,39,68,.12);
}

.location-map-box iframe{
    display:block;
    width:100%;
    height:500px;
    border:0;
}

.location-map-actions{
    display:flex;
    justify-content:center;
    gap:15px;
    margin-top:28px;
    flex-wrap:wrap;
}

.location-map-button,
.location-phone-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    min-height:54px;
    padding:0 25px;
    border-radius:14px;
    text-decoration:none;
    font-weight:700;
    transition:.25s ease;
}

.location-map-button{
    background:#1477c9;
    color:#fff;
}

.location-phone-button{
    background:#fff;
    color:#10253d;
    border:1px solid #dbe5ef;
}

.location-map-button:hover,
.location-phone-button:hover{
    transform:translateY(-3px);
}

@media(max-width:768px){

    .location-map-section{
        padding:55px 0;
    }

    .location-map-box iframe{
        height:360px;
    }

    .location-map-button,
    .location-phone-button{
        width:100%;
    }

}

.pro-hero,.service-simple-hero{position:relative;padding:92px 0;background:linear-gradient(135deg,#071d35,#0d4f85);color:#fff;overflow:hidden}.pro-hero h1,.service-simple-hero h1{max-width:850px;margin:18px 0;font-size:clamp(38px,5vw,68px);line-height:1.05}.pro-hero h1 span,.service-simple-hero h1 span{display:block;color:#55b7ff}.pro-hero p,.service-simple-hero p{max-width:780px;font-size:18px;line-height:1.8;color:#d9eafb}.pro-hero .page-breadcrumb,.service-simple-hero .page-breadcrumb{color:#d9eafb}.pro-hero .page-breadcrumb a,.service-simple-hero .page-breadcrumb a{color:#fff}.pro-hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:30px}.pro-section{padding:85px 0}.soft-bg{background:#f4f8fc}.pro-stats{background:#fff;border-bottom:1px solid #e2eaf2}.pro-stats-grid{display:grid;grid-template-columns:repeat(4,1fr)}.pro-stats-grid>div{padding:28px;text-align:center;border-right:1px solid #e2eaf2}.pro-stats-grid>div:last-child{border-right:0}.pro-stats strong{display:block;font-size:30px;color:#0c5fa5}.pro-stats span{color:#607286}.pro-services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}.pro-service-card{padding:30px;border:1px solid #e0e8f0;border-radius:22px;background:#fff;box-shadow:0 14px 35px rgba(8,37,67,.07);transition:.25s}.pro-service-card:hover{transform:translateY(-6px);box-shadow:0 22px 45px rgba(8,37,67,.12)}.pro-service-icon{font-size:36px}.pro-service-card h3{margin:18px 0 10px;color:#10253d}.pro-service-card p{color:#64768a;line-height:1.7}.pro-service-card a{display:inline-flex;gap:8px;margin-top:12px;font-weight:800;color:#0878f9;text-decoration:none}.about-pro-grid,.two-col-info,.service-simple-grid{display:grid;grid-template-columns:1.25fr .75fr;gap:55px;align-items:center}.about-pro-grid h2,.two-col-info h2{font-size:clamp(34px,4vw,52px);color:#10253d}.about-pro-grid h2 span,.two-col-info h2 span{color:#1477c9}.about-pro-grid p,.two-col-info p{color:#607286;line-height:1.85}.about-pro-grid blockquote{margin:28px 0 0;padding:24px;border-left:4px solid #1477c9;background:#f4f8fc;border-radius:0 16px 16px 0;font-weight:700;color:#18324d}.timeline-card{padding:30px;border-radius:24px;background:#102a46;color:#fff}.timeline-card div{padding:20px 0;border-bottom:1px solid rgba(255,255,255,.15)}.timeline-card div:last-child{border-bottom:0}.timeline-card strong{display:block;color:#55b7ff;font-size:26px}.timeline-card span{color:#d8e8f6}.project-types{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}.project-types div{display:flex;flex-direction:column;gap:10px;padding:28px;border-radius:20px;background:#fff;border:1px solid #e0e8f0;font-size:30px}.project-types strong{font-size:18px;color:#10253d}.values-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}.values-grid article{padding:26px;border-radius:20px;background:#fff;border:1px solid #e0e8f0}.values-grid article>span{font-weight:900;color:#1477c9}.values-grid h3{color:#10253d}.values-grid p{color:#607286;line-height:1.7}.service-media-placeholder{min-height:430px;border-radius:26px;overflow:hidden;background:#eaf2f8;box-shadow:0 25px 55px rgba(0,0,0,.18)}.service-media-placeholder img{width:100%;height:100%;min-height:430px;object-fit:cover}.media-empty{display:none;min-height:330px;height:100%;align-items:center;justify-content:center;flex-direction:column;text-align:center;gap:14px;font-size:50px;color:#0d4f85;padding:30px}.media-empty strong{font-size:22px}.media-empty small{font-size:13px;color:#607286;line-height:1.5}.check-list{list-style:none;padding:0}.check-list li{padding:12px 0;color:#354b61}.check-list li:before{content:'✓';margin-right:10px;color:#1477c9;font-weight:900}.info-panel{padding:34px;border-radius:24px;background:#102a46;color:#fff}.info-panel h3{font-size:28px}.info-panel p{color:#d8e8f6}.info-panel a{color:#55b7ff;font-weight:800;text-decoration:none}.machine-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:26px}.machine-card{overflow:hidden;border:1px solid #dfe8f1;border-radius:24px;background:#fff;box-shadow:0 18px 45px rgba(8,37,67,.09)}.machine-photo{height:300px;background:#edf4f9}.machine-photo img{width:100%;height:100%;object-fit:cover}.machine-photo .media-empty{min-height:300px}.machine-body{padding:26px}.machine-body h3{margin-top:0;color:#10253d}.machine-body p{color:#607286;line-height:1.7}.machine-body video{width:100%;margin-top:12px;border-radius:14px;background:#0a1c2e}.file-note{display:block;margin-top:8px;color:#8192a4}.navigation-dropdown-menu{max-height:72vh;overflow-y:auto}
@media(max-width:1000px){.pro-services-grid{grid-template-columns:repeat(2,1fr)}.values-grid{grid-template-columns:repeat(2,1fr)}.about-pro-grid,.two-col-info,.service-simple-grid{grid-template-columns:1fr}.project-types{grid-template-columns:repeat(2,1fr)}}
@media(max-width:700px){.pro-hero,.service-simple-hero{padding:65px 0}.pro-stats-grid{grid-template-columns:repeat(2,1fr)}.pro-stats-grid>div{border-bottom:1px solid #e2eaf2}.pro-services-grid,.machine-grid,.values-grid,.project-types{grid-template-columns:1fr}.pro-section{padding:58px 0}.service-media-placeholder,.service-media-placeholder img{min-height:300px}.machine-photo{height:240px}}


.biography-grid{display:grid;grid-template-columns:1.4fr .6fr;gap:55px;align-items:start}.biography-content h2{font-size:clamp(34px,4vw,52px);line-height:1.12;color:#10253d}.biography-content h2 span{color:#1477c9}.biography-content p{font-size:17px;line-height:1.9;color:#5e7185}.biography-content blockquote{margin:30px 0 0;padding:26px 28px;border-left:5px solid #1477c9;border-radius:0 18px 18px 0;background:#f2f7fb;color:#17324d;font-size:18px;font-weight:800;line-height:1.7}.biography-summary{position:sticky;top:110px;padding:32px;border-radius:25px;background:linear-gradient(145deg,#0c2743,#0d568f);color:#fff;box-shadow:0 25px 55px rgba(6,32,59,.2)}.biography-name{display:inline-block;margin-bottom:14px;padding:7px 12px;border-radius:999px;background:rgba(255,255,255,.12);color:#8ed1ff;font-weight:800}.biography-summary h3{margin:0 0 24px;font-size:27px;line-height:1.3}.biography-summary ul{list-style:none;margin:0 0 28px;padding:0}.biography-summary li{padding:13px 0;border-bottom:1px solid rgba(255,255,255,.13);color:#d9e9f7;line-height:1.55}.biography-summary li strong{display:block;color:#fff}.career-timeline{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}.career-timeline article{position:relative;padding:30px 25px;border-radius:22px;background:#fff;border:1px solid #dfe8f1;box-shadow:0 15px 38px rgba(8,37,67,.07)}.career-timeline article:before{content:'';position:absolute;top:0;left:25px;width:55px;height:4px;border-radius:0 0 8px 8px;background:#1477c9}.career-timeline strong{display:block;color:#1477c9;font-size:28px}.career-timeline h3{margin:12px 0;color:#10253d}.career-timeline p{margin:0;color:#64768a;line-height:1.7}.expertise-tags{display:flex;flex-wrap:wrap;gap:13px}.expertise-tags span{padding:13px 18px;border:1px solid #dce6ef;border-radius:999px;background:#fff;color:#29435d;font-weight:700;box-shadow:0 8px 22px rgba(8,37,67,.05)}
.work-videos-section{padding:90px 0;background:#071d35;color:#fff}.work-videos-section .section-heading h2{color:#fff}.work-videos-section .section-heading p{color:#c8ddef}.work-videos-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:26px}.work-video-card{position:relative;overflow:hidden;border:1px solid rgba(255,255,255,.14);border-radius:24px;background:#0d2b48;box-shadow:0 22px 50px rgba(0,0,0,.22)}.work-video-card video{display:block;width:100%;aspect-ratio:16/9;background:#020b13;object-fit:cover}.work-video-number{position:absolute;top:14px;left:14px;z-index:2;padding:7px 10px;border-radius:10px;background:rgba(7,29,53,.82);color:#75c8ff;font-weight:900;backdrop-filter:blur(8px)}.work-video-content{padding:24px}.work-video-content h3{margin:0 0 10px;color:#fff}.work-video-content p{margin:0 0 13px;color:#c8ddef;line-height:1.7}.work-video-content small{display:block;overflow-wrap:anywhere;color:#7fb4dc}
.other-services-section{padding:82px 0;background:#f4f8fc}.other-services-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}.other-services-grid a{display:flex;align-items:center;gap:13px;min-height:82px;padding:18px;border:1px solid #dfe8f1;border-radius:18px;background:#fff;color:#17324d;text-decoration:none;box-shadow:0 10px 28px rgba(8,37,67,.06);transition:.25s}.other-services-grid a:hover{transform:translateY(-4px);border-color:#8bc9f5;box-shadow:0 18px 35px rgba(8,37,67,.11)}.other-services-grid span{font-size:27px}.other-services-grid strong{line-height:1.35}.other-services-all{text-align:center;margin-top:30px}
.services-machine-promo{padding:85px 0;background:#0b2946;color:#fff}.services-machine-promo-grid{display:grid;grid-template-columns:1fr 1fr;gap:55px;align-items:center}.services-machine-promo h2{margin:12px 0 18px;font-size:clamp(34px,4vw,52px);line-height:1.12}.services-machine-promo h2 span{display:block;color:#67c1ff}.services-machine-promo p{max-width:680px;color:#d2e4f3;line-height:1.8}.services-machine-promo .primary-button{display:inline-flex;margin-top:15px}.services-machine-features{display:grid;grid-template-columns:repeat(2,1fr);gap:17px}.services-machine-features div{padding:24px;border:1px solid rgba(255,255,255,.13);border-radius:19px;background:rgba(255,255,255,.06)}.services-machine-features span{display:block;margin-bottom:10px;font-size:29px}.services-machine-features strong{display:block;margin-bottom:6px}.services-machine-features small{color:#b9d2e7}
@media(max-width:1000px){.biography-grid,.services-machine-promo-grid{grid-template-columns:1fr}.biography-summary{position:static}.career-timeline{grid-template-columns:repeat(2,1fr)}.other-services-grid{grid-template-columns:repeat(3,1fr)}}
@media(max-width:700px){.career-timeline,.work-videos-grid,.other-services-grid,.services-machine-features{grid-template-columns:1fr}.work-videos-section{padding:60px 0}.biography-content p{font-size:16px}.biography-summary{padding:25px}.other-services-section,.services-machine-promo{padding:58px 0}}

.documents-grid{margin-top:42px;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}.document-placeholder{min-height:230px;padding:32px;border:1px dashed #b8cadb;border-radius:22px;background:#fff;display:flex;align-items:center;justify-content:center;flex-direction:column;text-align:center}.document-placeholder>span{font-size:42px}.document-placeholder h3{margin:18px 0 10px;color:#10253d}.document-placeholder p{margin:0;color:#607286;line-height:1.7}.machine-body{padding-bottom:28px}@media(max-width:850px){.documents-grid{grid-template-columns:1fr}}

.navigation-dropdown.dropdown-open .navigation-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.navigation-dropdown.dropdown-open .navigation-dropdown-arrow {
    color: #0878f9;
    transform: rotate(180deg);
}

@media (max-width: 850px) {
    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .contact-information,
    .contact-form-wrapper {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 600px) {
    .contact-main-section {
        padding: 45px 0;
    }

    .contact-information h2 {
        font-size: 32px;
        line-height: 1.15;
    }

    .contact-information-description {
        font-size: 13px;
        line-height: 1.7;
    }

    .contact-information-card {
        width: 100%;
        padding: 15px;
    }

    .contact-form-wrapper {
        padding: 24px 16px;
        border-radius: 18px;
    }

    .contact-form-heading h2 {
        font-size: 25px;
        line-height: 1.25;
    }

    .contact-form {
        gap: 14px;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .contact-submit-button {
        width: 100%;
    }
}

@media (max-width: 850px) {
    .contact-map-box {
        width: 100%;
        min-width: 0;
        grid-template-columns: 1fr;
    }

    .contact-map-content,
    .contact-map-placeholder {
        width: 100%;
        min-width: 0;
    }

    .contact-map-placeholder {
        border-radius: 0;
    }

    .contact-map-placeholder iframe {
        width: 100%;
        height: 320px;
    }
}

@media (max-width: 600px) {
    .contact-consent {
        width: 100%;
        display: grid;
        grid-template-columns: 18px minmax(0, 1fr);
        align-items: start;
        gap: 10px;
    }

    .contact-consent input {
        width: 18px;
        height: 18px;
        margin: 2px 0 0;
    }

    .contact-consent label,
    .contact-consent span {
        width: auto;
        min-width: 0;
        margin: 0;
        display: block;
        overflow-wrap: anywhere;
        word-break: normal;
        white-space: normal;
    }

    .contact-map-section .container {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }

    .contact-map-box {
        border-radius: 20px;
        overflow: hidden;
    }

    .contact-map-content {
        padding: 25px 18px;
    }

    .contact-map-content h2 {
        font-size: 28px;
    }

    .contact-map-placeholder iframe {
        height: 290px;
    }
}