html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    font-family: "Source Sans 3", sans-serif;
    box-sizing: border-box;
}

* {
    font-family: "Source Sans 3", sans-serif;
    box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

html, body, main {
    scroll-behavior: smooth;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

strong,
b {
    font-weight: bold;
}

sup,
sub {
    font-size: 0.75em;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

em,
i {
    font-style: italic;
}

main {
    min-height: 10vh;
    background-color: #f5f5f5;
    max-width: 2560px;
    margin: 0 auto;
}

header {
    background-color: #0d0e0e;
    width: 100%;
    padding: 24px 24px;
    position: relative;
    max-width: 2560px;
    margin: 0 auto;
}

.header-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    max-width: 1560px;
    margin: 0 auto;
    position: relative;
    z-index: 1001;
}

.header-wrapper {
    margin-right: 62px;
}

.header-wrapper img {
    height: 100%;
    display: block;
    line-height: 1;
    width: auto;
}

.hamburger-menu-container {
    display: none;
    cursor: pointer;
    margin-left: auto;
}

.menu-container nav ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 32px;
}

.menu-container nav ul li {
    position: relative;
}

.menu-container nav ul li a {
    text-decoration: none;
    color: #ffffff;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-size: 21px;
    font-weight: 400;
    line-height: 140%;
    cursor: pointer;
}

.menu-container nav ul li a:hover {
    color: #cccccc;
}

/* Dropdown Menu Styles */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #000000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    z-index: 1000;
}

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

.dropdown-content-container {
    max-width: 1560px;
    margin: 0 auto;
    padding: 48px 24px;
}

.dropdown-content {
    display: flex;
    flex-direction: row;
    gap: 64px;
    flex-wrap: wrap;
    width: fit-content;
    min-width: 220px;
}

.dropdown-content.models-container-menu {
    flex-direction: column;
    gap: 12px;
}

.dropdown-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dropdown-content.models-container-menu .dropdown-column {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 64px;
}

.dropdown-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
    width: 100%;
    white-space: nowrap;
}

.dropdown-link:hover {
    background-color: #ffffff;
    color: #000000;
}

.header-cta-wrapper {
    margin-left: auto;
}

.header-cta-wrapper a {
    text-decoration: none;
    border: 2px solid #ffffff;
    border-radius: 12px;
    padding: 12px 16px;
    color: #ffffff;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 9px;
    text-transform: uppercase;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.header-cta-wrapper a:hover {
    background-color: #ffffff;
    color: #0d0e0e;
}

.header-cta-wrapper a span:first-of-type {
    transform: translateY(2px);
}

.header-cta-wrapper a span img {
    transition: filter 0.3s ease;
}

.header-cta-wrapper a:hover span img {
    filter: invert(1);
}

footer {
    width: 100%;
    background-color: #0d0e0e;
    background-image: url("images/footer-vehicle.png");
    background-repeat: no-repeat;
    background-size: 80% auto;
    background-position: center bottom;
    max-width: 2560px;
    margin: 0 auto;
}

.footer-logo-wrapper {
    width: 100%;
    max-width: 432px;
    margin: 0 auto;
    padding-top: 122px;
    margin-bottom: 44px;
}

    .footer-logo-wrapper img {
        width: 100%;
    }

.social-media-container {
    width: auto;
    max-width: 176px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 113px;
    position: relative;
}

.social-media-container::after {
    content: '';
    display: block;
    clear: both;
    background-color: #67b0c4;
    height: 1px;
    width: 140px;
    bottom: -56px;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
}

.social-media-container a {
    text-decoration: none;
    color: #ffffff;
    transition: opacity 0.3s ease;
}

.social-media-container a:hover {
    opacity: 0.7;
}

.footer-navigation-container {
    width: auto;
    max-width: calc(1033px + 48px);
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 89px;
    padding: 0 24px;
}

.footer-navigation-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-navigation-wrapper a {
    text-decoration: none;
    color: #ffffff;
    font-size: 25px;
    line-height: 140%;
}

.footer-navigation-submenu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.footer-navigation-submenu a {
    font-size: 16px;
    line-height: 200%;
    font-weight: 400;
    color: #fff;
    opacity: 0.5;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.footer-navigation-submenu a:hover {
    opacity: 1;
}

.footer-notice-wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-notice-wrapper p {
    width: 100%;
    max-width: 1296px;
    margin: 0 auto;
    color: #ffffff;
    opacity: 0.5;
    font-size: 12px;
    line-height: 140%;
    font-weight: 400;
    text-align: center;
}

.footer-notice-wrapper p a {
    text-decoration: none;
    color: #ffffff;
    transition: opacity 0.3s ease;
}

.footer-notice-wrapper p a:hover {
    opacity: 0.7;
}

.footer-copyright-container {
    width: 100%;
    max-width: 499px;
    margin: 0 auto;
    padding-top: 38px;
    padding-bottom: 38px;
    color: #ffffff;
    font-size: 16px;
    line-height: 140%;
    font-weight: 400;
    opacity: 0.5;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.footer-copyright-container a {
    text-decoration: none;
    color: #ffffff;
    transition: opacity 0.3s ease;
}

.footer-copyright-container a:hover {
    opacity: 0.7;
}

.footer-info-wrapper {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    line-height: 140%;
    padding: 8px 24px;
}

.footer-info-wrapper p {
    max-width: 1330px;
    margin: 0 auto;
    color: #fff;
    opacity: 0.5;
    text-align: center;
}

.model-hero-container {
    width: 100%;
    height: auto;
    max-width: 2560px;
    margin: 0 auto;
    position: relative;
}

.model-hero-container video {
    width: 100%;
    height: auto;
    display: block;
}

video::-webkit-media-controls {
    display: none !important;
}

video::-webkit-media-controls-enclosure {
    display: none !important;
}

video::-webkit-media-controls-panel {
    display: none !important;
}

video {
    pointer-events: none;
}

.model-hero-card-container {
    width: auto;
    padding: 32px 64px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.model-hero-card-container .subtitle {
    text-transform: uppercase;
    font-size: 21px;
    line-height: 140%;
    font-weight: 300;
    color: #ffffff;
}

.model-hero-card-container h1 {
    font-size: 80px;
    line-height: 120%;
    color: #ffffff;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: 400;
}

.model-hero-card-container .description {
    font-size: 32px;
    line-height: 120%;
    color: #ffffff;
    margin-bottom: 97px;
    position: relative;
}

.model-hero-card-container .description::after {
    content: '';
    display: block;
    clear: both;
    background-color: #ffffff;
    height: 1px;
    width: 100%;
    max-width: 140px;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
}

.model-hero-cta-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.model-hero-cta-container a {
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 6px;
    font-size: 21px;
    line-height: 140%;
    white-space: nowrap;
}

.model-hero-cta-container .primary-cta-button {
    color: #ffffff;
    background-color: #67b0c4;
    transition: background-color 0.3s ease;
}

.model-hero-cta-container .primary-cta-button:hover {
    background-color: #335862;
}

.model-hero-cta-container .primary-cta-button:focus {
    background-color: #1a2c31;
}

.model-hero-cta-container .secondary-cta-button {
    color: #0d0e0e;
    background-color: #ffffff;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.model-hero-cta-container .secondary-cta-button:hover {
    background-color: #335862;
    color: #ffffff;
}

.model-hero-cta-container .secondary-cta-button:focus {
    background-color: #1a2c31;
    color: #ffffff;
}

.coming-soon-link:hover {
    background-color: #335862;
    color: #ffffff;
}

.coming-soon-link:focus {
        background-color: #1a2c31;
    color: #ffffff;
}

.model-stats-container {
    width: 100%;
    background: radial-gradient(circle, #2c2d2d 0%, #0d0e0e 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 2560px;
    margin: 0 auto;
    justify-content: flex-start;
    padding: 0 24px 94px 24px;
}

.model-stats-tabs-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 61px;
    padding-top: 31px;
    position: relative;
    width: 100%;
}

.model-stats-tabs-container::before {
    content: '';
    display: block;
    clear: both;
    height: 1px;
    width: 100%;
    top: 0;
    position: absolute;
    background: linear-gradient(to right,
            rgba(209, 211, 213, 0) 0%,
            rgba(209, 211, 213, 0.25) 49%,
            rgba(209, 211, 213, 0) 100%);
}

.model-stats-tabs-container::after {
    content: '';
    display: block;
    clear: both;
    height: 1px;
    width: 100%;
    bottom: 0;
    position: absolute;
    background: linear-gradient(to right,
            rgba(209, 211, 213, 0) 0%,
            rgba(209, 211, 213, 0.25) 49%,
            rgba(209, 211, 213, 0) 100%);
}

.model-stats-tab {
    font-size: 21px;
    line-height: 140%;
    color: #ffffff;
    opacity: 0.5;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.3s ease;
    padding-bottom: 27px;
}

.model-stats-tab.active {
    opacity: 1;
    border-bottom: 4px solid #67b0c4;
}

.model-stats-content-container {
    padding-top: 73px;
    width: 100%;
}

.model-stats-box-container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 24px;
    width: 100%;
    max-width: 1560px;
    margin: 0 auto 16px auto;
    position: relative;
}

.all-stats-button-container {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    max-width: 1560px;
    margin: 0 auto 72px auto;
}

.all-stats-button {
    font-size: 21px;
    line-height: 140%;
    color: rgba(255, 255, 255, 0.25);
        display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.all-stats-button:hover {
    text-decoration: underline;
}

.all-stats-button .icon {
    transform: translateY(5px);
}

.model-stats-box-container::after {
    content: '';
    display: block;
    clear: both;
    height: 1px;
    width: 140px;
    background-color: #67b0c4;
    position: absolute;
    bottom: -53px;
    left: 50%;
    transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
    .model-stats-box-container::after {
        bottom: -85px;
    }
}

.model-stats-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 32px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 6px;
    flex: 1;
    width: 25%;
}

.model-stats-label {
    color: #ffffff;
    font-size: 25px;
    line-height: 140%;
    text-align: center;
}

.model-stats-value {
    color: #67b0c4;
    font-size: 47px;
    line-height: 120%;
    font-weight: 700;
}

.model-stats-unit {
    color: #ffffff;
    opacity: 0.75;
    font-size: 21px;
    line-height: 140%;
    font-weight: 400;
}

.model-stats-unit p {
    display: inline;
}

.model-stats-description-wrapper {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 55px;
}

.model-stats-description-wrapper p {
    color: #ffffff;
    font-size: 32px;
    line-height: 140%;
    text-align: center;
}

.model-stats-cta-wrapper {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.model-stats-cta-wrapper a {
    text-decoration: none;
    background-color: #67b0c4;
    border-radius: 6px;
    padding: 16px 32px;
    color: #ffffff;
    font-size: 21px;
    line-height: 140%;
    transition: background-color 0.3s ease;
}

.model-stats-cta-wrapper a:hover {
    background-color: #335862;
}

.model-stats-cta-wrapper a:focus {
    background-color: #1a2c31;
}

.model-stats-tab-content {
    display: none;
}

.model-stats-tab-content.active {
    display: block;
}

.model-color-container {
    width: 100%;
    background-color: #ffffff;
    padding: 112px 0 120px 0;
    max-width: 2560px;
    margin: 0 auto;
}

.model-color-container h2 {
    color: #0d0e0e;
    font-size: 66px;
    line-height: 120%;
    margin-bottom: 50px;
    text-align: center;
}

.model-color-tabs-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.model-color-tabs-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 61px;
    padding-top: 31px;
    position: relative;
    background: linear-gradient(to right, #ffffff 0%, #f5f5f5 50%, #ffffff 100%);
}

.model-color-tab {
    cursor: pointer;
    border-bottom: 4px solid transparent;
    transition: border-color 0.3s ease;
    padding-bottom: 27px;
    font-size: 21px;
    line-height: 140%;
    text-transform: uppercase;
    opacity: 0.5;
    position: relative;
}

.model-color-tabs-wrapper::before {
    content: '';
    display: block;
    clear: both;
    height: 1px;
    width: 100%;
    top: 0;
    position: absolute;
    background: linear-gradient(to right, #ffffff 0%, #d1d3d5 49%, #ffffff 100%);
}

.model-color-tabs-wrapper::after {
    content: '';
    display: block;
    clear: both;
    height: 1px;
    width: 100%;
    bottom: 0;
    position: absolute;
    background: linear-gradient(to right, #ffffff 0%, #d1d3d5 49%, #ffffff 100%);
}

.model-color-tab.active {
    border-bottom: 4px solid #67b0c4;
    opacity: 1;
}

.model-color-content-container {
    width: 100%;
}

.model-color-image-container {
    width: 100%;
    max-width: 1560px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.model-color-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.model-color-image-text-container {
    text-align: center;
}

.model-color-image-text-container h3 {
    font-size: 47px;
    line-height: 120%;
    margin-bottom: 8px;
    padding-top: 24px;
}

.model-color-image-text-container span {
    font-size: 21px;
    line-height: 140%;
    color: #0d0e0e;
    opacity: 0.75;
    display: block;
    margin-bottom: 32px;
    height: 29.4px;
}

.model-color-picker-container {
    width: auto;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 6px;
    padding: 16px 24px;
    border: 1px solid #d1d3d5;
}

.model-color {
    width: 32px;
    height: 32px;
    cursor: pointer;
    transition: border-color 0.3s ease;
    border: 6px solid #fff;
}

.model-color.active {
    border: 6px solid #d1d3d5;
}

.model-gallery-one-half-container {
    width: 100%;
    padding: 96px 0 120px 0;
    background: radial-gradient(#2c2d2d 0%, #0d0e0e 100%);
    overflow: hidden;
    max-width: 2560px;
    margin: 0 auto;
}

.model-gallery-one-half {
    width: 100%;
    max-width: none;
    padding-left: max(24px, calc((100% - 1560px) / 2));
    box-sizing: border-box;
}

.model-gallery-one-half-text-container {
    text-align: center;
    margin-bottom: 64px;
    padding-right: max(24px, calc((100% - 1560px) / 2 + 24px));
}

.model-gallery-one-half-text-container h2 {
    font-size: 66px;
    line-height: 120%;
    margin-bottom: 8px;
    color: #ffffff;
}

.model-gallery-one-half-text-container span {
    font-size: 32px;
    line-height: 120%;
    color: #ffffff;
    opacity: 0.75;
    display: block;
}

.model-gallery-one-half-carousel-wrapper {
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.model-gallery-one-half-images-container {
    width: 100%;
    display: flex;
    gap: 24px;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-behavior: smooth;

    scrollbar-width: none;
    -ms-overflow-style: none;

    padding-right: 24px;
    max-width: 2560px;
    margin-right: 0;
    margin-left: auto;
}

.model-gallery-one-half-images-container::-webkit-scrollbar {
    display: none;
}

.model-gallery-one-half-image-wrapper {
    flex: 0 0 min(1164px, calc((100% - 24px) / 1.5));
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.model-gallery-one-images-container,
.model-gallery-one-half-images-container,
.model-gallery-two-half-images-container,
.model-gallery-five-images-container {
    scroll-snap-type: x mandatory;
}

.model-gallery-one-image-wrapper,
.model-gallery-one-half-image-wrapper,
.model-gallery-two-half-image-wrapper,
.model-gallery-five-image-wrapper {
    scroll-snap-align: start;
}

@media screen and (max-width: 1200px) {
    .model-gallery-one-half-image-wrapper {
        flex: 0 0 min(1164px, calc((100% - 24px) / 1.2));
    }
}

.model-gallery-one-half-image-wrapper a {
    width: 100%;
    display: block;
    margin-bottom: 32px;
    cursor: pointer;
    overflow: hidden;
    border-radius: 12px;
}

.model-gallery-one-half-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.model-gallery-one-half-image-wrapper a:hover img {
    transform: scale(1.05);
}

.model-gallery-one-half-image-wrapper h4 {
    font-size: 32px;
    padding-top: 32px;
    line-height: 120%;
    font-weight: 400;
    color: #ffffff;
    width: 100%;
}

.model-gallery-one-half-controls {
    display: flex;
    gap: 24px;
    justify-content: flex-start;
    margin-top: 40px;
}

.gallery-arrow {
    width: 54px;
    height: 54px;
    border-radius: 6px;
    background: #67b0c4;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #0d0e0e;
    border: none;
    outline: none;
}

.gallery-arrow:hover {
    border-color: #335862;
    color: #ffffff;
    background: #335862;
}

.gallery-arrow:disabled {
    cursor: not-allowed;
}

.gallery-arrow:disabled:hover {
    background: #d1d3d5;
    border-color: #d1d3d5;
    color: #0d0e0e;
}

.model-gallery-one-container {
    width: 100%;
    padding: 96px 24px 120px 24px;
    background: radial-gradient(#2c2d2d 0%, #0d0e0e 100%);
    overflow: hidden;
    max-width: 2560px;
    margin: 0 auto;
}

.model-gallery-one {
    width: 100%;
    max-width: 100vw;
    margin: 0 auto;
    box-sizing: border-box;
    max-width: 1560px;
}

.model-gallery-one-text-container {
    text-align: center;
    margin-bottom: 64px;
}

.model-gallery-one-text-container h2 {
    font-size: 66px;
    line-height: 120%;
    margin-bottom: 8px;
    color: #ffffff;
}

.model-gallery-one-text-container span {
    font-size: 32px;
    line-height: 120%;
    color: #ffffff;
    opacity: 0.75;
    display: block;
}

.model-gallery-one-carousel-wrapper {
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.model-gallery-one-images-container {
    width: 100%;
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.model-gallery-one-images-container::-webkit-scrollbar {
    display: none;
}

.model-gallery-one-image-wrapper {
    flex: 0 0 100%;
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.model-gallery-one-image-wrapper a {
    width: 100%;
    display: block;
    margin-bottom: 32px;
    cursor: pointer;
    overflow: hidden;
    border-radius: 12px;
    max-width: 1560px;
}

.model-gallery-one-image-wrapper img, .model-gallery-one-image-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: transform 0.3s ease;
    margin-bottom: 32px;
}

.model-gallery-one-image-wrapper a:hover img {
    transform: scale(1.05);
}

.model-gallery-one-image-wrapper h4 {
    font-size: 32px;
    line-height: 120%;
    font-weight: 400;
    color: #ffffff;
    width: 100%;
}

.model-gallery-one-image-wrapper span {
    font-size: 21px;
    line-height: 140%;
    color: #ffffff;
    opacity: 0.75;
    display: block;
    margin-top: 8px;
    margin-bottom: 60px;
}

.model-gallery-one-controls {
    display: flex;
    gap: 24px;
    justify-content: flex-start;
    margin-top: 40px;
}

.gallery-arrow {
    width: 54px;
    height: 54px;
    border-radius: 6px;
    background: #67b0c4;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #0d0e0e;
    border: none;
    outline: none;
}

.gallery-arrow:hover {
    border-color: #335862;
    color: #ffffff;
    background: #335862;
}

.gallery-arrow:disabled {
    cursor: not-allowed;
}

.gallery-arrow:disabled:hover {
    background: #d1d3d5;
    border-color: #d1d3d5;
    color: #0d0e0e;
}

.gallery-dots {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
    align-items: center;
    width: 100%;
    justify-content: center;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #67b0c4;
    cursor: pointer;
    border: none;
    outline: none;
    transition: all 0.3s ease;
}

.gallery-dot.active {
    width: 36px;
    border-radius: 99px;
}

.gallery-dot:hover {
    background: #335862;
}

.gallery-dot.active:hover {
    background: #1a2c31;
}


.model-gallery-two-half-container {
    width: 100%;
    padding: 96px 0 80px 0;
    background: radial-gradient(#2c2d2d 0%, #0d0e0e 100%);
    overflow: hidden;
    max-width: 2560px;
    margin: 0 auto;
}

.model-gallery-five-container {
    width: 100%;
    padding: 96px 0 80px 0;
    background: radial-gradient(#2c2d2d 0%, #0d0e0e 100%);
    overflow: hidden;
    max-width: 2560px;
    margin: 0 auto;
}


.no-top-padding {
    padding-top: 0 !important;
}

.no-bottom-padding {
    padding-bottom: 0 !important;
}

.model-gallery-two-half-container.homepage-gallery-two-half-container .model-gallery-two-half-images-container {
    padding-right: 24px;
}

.model-gallery-two-half-container.homepage-gallery-two-half-container .model-gallery-two-half {
    max-width: none;
    padding-left: max(24px, calc((100% - 1560px) / 2));
}

.model-gallery-two-half-container.homepage-gallery-two-half-container .model-gallery-two-half-text-container {
    padding-right: max(24px, calc((100% - 1560px) / 2));
    max-width: none;
}

.model-gallery-two-half-container.homepage-gallery-two-half-container .model-gallery-two-half-carousel-wrapper {
    padding-left: 0;
}

.model-gallery-two-half-container.homepage-gallery-two-half-container .model-gallery-two-half-image-wrapper {
    background-color: #0d0e0e;
    flex: 0 0 calc((100% - 24px) / 2.7);
    min-width: calc((100% - 24px) / 2.7);
}



.legal-notice-container {
    width: 100%;
    background-color: #0d0e0e;
    padding: 16px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    max-width: 2560px;
    margin: 0 auto;
}

.legal-notice-container .legal-notice-title {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto 8px auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 25px;
    line-height: 140%;
    color: #fff;
    text-align: center;
}

.legal-notice-container .legal-notice-title:hover {
    opacity: 0.85;
}

.legal-notice-container .legal-notice-title:focus-visible {
    outline: 2px solid #67b0c4;
    outline-offset: 4px;
}

.legal-notice-container .legal-notice-symbol {
    min-width: 16px;
    font-weight: 700;
}

.legal-notice-container .legal-notice-content {
    padding: 0 24px;
}

.legal-notice-container .legal-notice-content p, .legal-notice-container .legal-notice-content p a {
    font-size: 12px;
    line-height: 140%;
    color: #fff;
    opacity: 0.5;
    max-width: 1560px;
    text-align: left;
    margin: 0 auto 16px auto;
}

.legal-notice-container .legal-notice-content p a {
    opacity: 1;
}

.legal-notice-container .legal-notice-content p a:hover {
    text-decoration: none;
}

.model-gallery-two-half {
    width: 100%;
    max-width: none;
    padding-left: max(24px, calc((100% - 1560px) / 2));
    box-sizing: border-box;
}

.model-gallery-five {
    width: 100%;
    max-width: none;
    padding-left: max(24px, calc((100% - 1560px) / 2));
    box-sizing: border-box;
}

.model-gallery-two-half-text-container, .model-gallery-five-text-container {
    text-align: center;
    margin-bottom: 64px;
    padding-right: max(24px, calc((100% - 1560px) / 2 + 24px));
}

.model-gallery-two-half-text-container h2, .model-gallery-five-text-container h2 {
    font-size: 66px;
    line-height: 120%;
    margin-bottom: 8px;
    color: #ffffff;
}

.model-gallery-two-half-text-container span, .model-gallery-five-text-container span {
    font-size: 32px;
    line-height: 120%;
    color: #ffffff;
    opacity: 0.75;
    display: block;
}

.model-gallery-two-half-carousel-wrapper {
    position: relative;
    width: 100%;
    padding-left: 0;
    box-sizing: border-box;
}

.model-gallery-five-carousel-wrapper {
    position: relative;
    width: 100%;
    padding-left: 0;
    box-sizing: border-box;
}

.model-gallery-two-half-images-container {
    width: 100%;
    display: flex;
    gap: 24px;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-behavior: smooth;

    scrollbar-width: none;
    -ms-overflow-style: none;

    padding-right: 24px;
    max-width: 2560px;
    margin-right: 0;
    margin-left: auto;
}

.model-gallery-two-half-images-container::-webkit-scrollbar {
    display: none;
}

.model-gallery-five-images-container {
    width: 100%;
    display: flex;
    gap: 24px;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-behavior: smooth;

    scrollbar-width: none;
    -ms-overflow-style: none;

    padding-right: 24px;
    max-width: 2560px;
    margin-right: 0;
    margin-left: auto;
}

.model-gallery-five-images-container::-webkit-scrollbar {
    display: none;
}

.model-gallery-two-half-image-wrapper {
    flex: 0 0 calc((100% - 24px) / 2.5);
    min-width: calc((100% - 24px) / 2.5);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
}

.model-gallery-five-image-wrapper {
    flex: 0 0 calc((100% - 24px) / 4);
    min-width: calc((100% - 24px) / 4);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
}

@media screen and (max-width: 1300px) {
    .model-gallery-two-half-image-wrapper {
        flex: 0 0 calc((100% - 24px) / 2.2);
        min-width: calc((100% - 24px) / 2.2);
    }
    .model-gallery-five-half-image-wrapper {
        flex: 0 0 calc((100% - 24px) / 3.5);
        min-width: calc((100% - 24px) / 3.5);
    }
}

@media screen and (max-width: 1100px) {
    .model-gallery-two-half-image-wrapper {
        flex: 0 0 calc((100% - 24px) / 1.4);
        min-width: calc((100% - 24px) / 1.4);
    }
        .model-gallery-five-image-wrapper {
        flex: 0 0 calc((100% - 24px) / 2.9);
        min-width: calc((100% - 24px) / 2.9);
    }
}

@media screen and (max-width: 768px) {
    .model-gallery-two-half-image-wrapper {
        flex: 0 0 calc(100% / 1);
        min-width: calc(100% / 1);
    }
        .model-gallery-five-image-wrapper {
        flex: 0 0 calc((100% - 24px) / 2.5);
        min-width: calc((100% - 24px) / 2.5);
    }
}

.model-gallery-two-half-image-wrapper a {
    width: 100%;
    display: block;
    margin-bottom: 32px;
    cursor: pointer;
    overflow: hidden;
    border-radius: 12px;
    max-width: none;
}

.model-gallery-two-half-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    transition: transform 0.3s ease;
    max-height: 442px;
    object-fit: cover;
    aspect-ratio: 704 / 448;
    margin-bottom: 32px;
}

.model-gallery-five-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    transition: transform 0.3s ease;
    max-height: 442px;
    object-fit: cover;
    aspect-ratio: 704 / 448;
}

.model-gallery-two-half-image-wrapper h4, .model-gallery-two-half-image-wrapper h4 p {
    font-size: 32px;
    line-height: 120%;
    font-weight: 400;
    color: #ffffff;
    opacity: 1;
    width: 100%;
}

.model-gallery-two-half-image-wrapper p, .model-gallery-two-half-image-wrapper ul, .model-gallery-two-half-image-wrapper span {
    font-size: 21px;
    line-height: 140%;
    color: #ffffff;
    opacity: 0.75;
    display: block;
    margin-top: 8px;
}

.model-gallery-two-half-image-wrapper ul {
    padding-left: 24px;
}

.model-gallery-two-half-controls {
    display: flex;
    gap: 24px;
    justify-content: flex-start;
    margin-top: 40px;
}

.model-gallery-five-controls {
    display: flex;
    gap: 24px;
    justify-content: flex-start;
    margin-top: 40px;
}

.model-engines-container {
    width: 100%;
    padding: 112px 0 0 0;
    background: #ffffff;
    max-width: 2560px;
    margin: 0 auto;
}

.model-engines-wrapper {
    max-width: calc(1560px + 48px);
    width: 100%;
    margin: 0 auto;
    padding: 0 24px 72px 24px;
}

.model-engines-wrapper h2 {
    color: #0d0e0e;
    font-size: 66px;
    line-height: 120%;
    margin-bottom: 64px;
    text-align: center;
}

.model-engines-cards {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.model-engines-card {
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #d1d3d5;
    flex: 1 1 430px;
    max-width: calc(50% - 12px);
    cursor: pointer;
    transition: border-color 0.3s ease;
    height: -webkit-fill-available;
}

.model-engines-card:hover {
    border-color: #67b0c4;
}

.model-engines-card.active {
    border-color: #335862;
}

.model-engines-card img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 24px;
}

.model-engines-card h3 {
    font-size: 47px;
    line-height: 120%;
    color: #0d0e0e;
}

.model-engines-card-specs {
    width: 100%;
    border-top: 1px solid #d1d3d5;
    margin-bottom: 24px;
}

.model-engines-card-specs-row {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 8px 4px;
    font-size: 21px;
    line-height: 140%;
    color: #0d0e0e;
    background: #ffffff;
}

.model-engines-card-specs-row:nth-child(even) {
    background: #f5f5f5;
}

.model-engines-label {
    font-weight: 400;
}

.model-engines-value {
    font-weight: 700;
}

.model-engines-cta-wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.model-engines-cta-wrapper a {
    text-decoration: none;
    background-color: #67b0c4;
    border-radius: 6px;
    padding: 16px 32px;
    color: #ffffff;
    font-size: 21px;
    line-height: 140%;
    transition: background-color 0.3s ease;
}

.model-engines-cta-wrapper a:hover {
    background-color: #335862;
}

.model-engines-cta-wrapper a:focus {
    background-color: #1a2c31;
}

.model-engines-data-container {
    background-color: #f5f5f5;
    width: 100%;
    padding: 58px 24px 80px 24px;
}

.model-engines-data-row {
    max-width: 1560px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding-bottom: 32px;
}

.model-engines-data-row h4 {
    font-size: 32px;
    line-height: 120%;
    color: #000000;
    flex: 1;
    font-weight: 700;
    margin-bottom: 24px;
}

.model-engines-data-boxes-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    flex-wrap: wrap;
    width: 100%;
}

.model-engines-data-box {
    flex: 1 1 calc(50% - 12px);
    max-width: min(372px, calc(50% - 12px));
    min-width: 372px;
    padding: 24px 32px;
    border-radius: 6px;
    background-color: #ffffff;
    border: 1px solid #d1d3d5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.model-engines-data-box .model-engines-data-box-label {
    font-size: 25px;
    line-height: 140%;
    text-align: center;
    color: #0d0e0e;
}

.model-engines-data-box .model-engines-data-box-value {
    font-size: 47px;
    line-height: 120%;
    color: #67b0c4;
    font-weight: 700;
    text-align: center;
    display: flex;
    align-items: flex-end;
}

.model-engines-data-box .model-engines-data-box-unit {
    font-size: 21px;
    line-height: 140%;
    color: #0d0e0e;
    font-weight: 400;
    margin-left: 8px;
    display: inline-block;
    padding-bottom: 6px;
}

.model-versions-row {
    width: 100%;
    max-width: 1560px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding-bottom: 87px;
    flex-wrap: wrap;
}

.model-version {
    flex: 1;
    padding: 48px 64px;
    border-radius: 12px;
    border: 1px solid #d1d3d5;
    display: flex;
    background-color: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    cursor: pointer;
    transition: border-color 0.3s ease;
    min-width: 600px;
}

.model-version:hover {
    border-color: #67b0c4;
}

.model-version h3 {
    font-size: 32px;
    line-height: 120%;
    color: #67b0c4;
    margin-bottom: 8px;
}

.model-version h4 {
    font-size: 32px;
    line-height: 120%;
    color: rgba(0, 0, 0, 0.75);
    margin-bottom: 34px;
    font-weight: 700;
    display: block;
}

.model-version ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 4px;
}

.model-version ul li, .model-version p {
    font-size: 21px;
    line-height: 140%;
    color: #0d0e0e;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.model-version p {
    margin-bottom: 16px;
}

.model-version ul li::before {
    content: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.66667 13.3333C2.98477 13.3333 0 10.3485 0 6.66667C0 2.98477 2.98477 0 6.66667 0C10.3485 0 13.3333 2.98477 13.3333 6.66667C13.3333 10.3485 10.3485 13.3333 6.66667 13.3333ZM6.66667 12C9.6122 12 12 9.6122 12 6.66667C12 3.72115 9.6122 1.33333 6.66667 1.33333C3.72115 1.33333 1.33333 3.72115 1.33333 6.66667C1.33333 9.6122 3.72115 12 6.66667 12Z' fill='%2367B0C4'/%3E%3C/svg%3E");
    margin-right: 12px;
}

.model-close-btn-wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.model-close-btn-wrapper a {
    width: 54px;
    height: 54px;
    border-radius: 6px;
    background-color: #67b0c4;
    text-decoration: none;
    color: #ffffff;
    transition: color 0.3s ease, background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.model-close-btn-wrapper a:hover {
    background-color: #335862;
    color: #ffffff;
}

.model-close-btn-wrapper a .first-x-line {
    transform: rotate(45deg);
    width: 24px;
    height: 2px;
    background-color: currentColor;
    display: block;
}

.model-close-btn-wrapper a .second-x-line {
    transform: rotate(-45deg);
    width: 24px;
    height: 2px;
    background-color: currentColor;
    display: block;
    position: absolute;
}

.model-cards-container {
    width: 100%;
    max-width: 2560px;
    margin: 0 auto;
    position: relative;
    padding: 120px 0 120px 0;
    background: linear-gradient(to bottom, rgba(13, 14, 14, 0) 0%, rgba(13, 14, 14, 1) 100%);
}

.model-cards-wrapper {
    width: 100%;
    max-width: calc(1560px + 48px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 0 24px;
    z-index: 1;
    position: relative;
}

.model-cards-background {
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    object-fit: cover;
}

.model-cards-wrapper h2 {
    font-size: 66px;
    line-height: 120%;
    color: #ffffff;
    margin-bottom: 8px;
    text-align: center;
}

.model-cards-wrapper span {
    font-size: 32px;
    line-height: 120%;
    color: #ffffff;
    display: block;
    margin-bottom: 64px;
}

.model-cards-grid {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.models-cards-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex: 1;
    min-width: 300px;
}

.model-card-text-box {
    width: 100%;
    padding: 32px;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.25);
    filter: blur(17.1);
    color: #ffffff;
}

.model-card-text-box h4 {
    font-size: 32px;
    line-height: 120%;
    margin-bottom: 8px;
    color: #ffffff;
}

.model-card-text-box p {
    color: #ffffff;
    opacity: 0.75;
    font-size: 21px;
    line-height: 140%;
}

.model-card-image-box {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.model-card-image-box img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.ncap-container {
    display: flex;
    align-items: stretch; /* same height */
    justify-content: center;
    gap: 24px;

    max-height: 800px;
    max-width: 1560px;
    width: 100%;
    margin: 0 auto;

    padding: 120px 24px; /* 24px left/right */
    
    box-sizing: border-box;
}

.ncap-container .ncap-text-wrapper,
.ncap-container .ncap-image-wrapper {
    flex: 1 1 0;
    max-width: 768px;
}

.ncap-container .ncap-text-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;

    border-radius: 6px;
    padding: 32px;
    border: 1px solid #d1d3d5;
    background: #fff;
    box-sizing: border-box;
}

.ncap-text-wrapper h4 {
    margin-bottom: 16px;
    font-size: 32px;
    line-height: 120%;
    color: #0d0e0e;
}

.ncap-text-wrapper p {
    font-size: 21px;
    line-height: 140%;
    margin-bottom: 16px;
    color: rgba(0, 0, 0, 0.75);
}

.ncap-image-wrapper {
    border-radius: 12px;
    overflow: hidden;
}

.ncap-image-wrapper img {
    width: 100%;
    height: 100%; /* match wrapper height */
    object-fit: cover; /* keep image filled */
    display: block;
    border-radius: 12px;
}

.model-contact-form-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 2560px;
    margin: 0 auto;
}

.model-contact-form-tabs-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 61px;
    padding-top: 31px;
    position: relative;
    width: 100%;
    border-bottom: 1px solid #d1d3d5;
    background: #fff;
    padding-bottom: 27px;
}

.model-contact-form-tab span {
    font-size: 21px;
    line-height: 140%;
    color: #0d0e0e;
    opacity: 0.5;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.3s ease;
    padding-bottom: 23px;
}

.model-contact-form-tab.active span {
    opacity: 1;
    border-bottom: 4px solid #67b0c4;
}

.model-contact-form-tab:hover span {
    opacity: 1;
}

.model-contact-form-container form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 72px 0 139px 0;
    background-color: #f5f5f5;
}

.model-contact-form-container.offer-contact-form-container form {
    padding-bottom: 72px;
}

.form-type-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 56px;
}

.form-type {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    border-radius: 6px;
    padding: 48px 32px;
    border: 1px solid #d1d3d5;
    background-color: #ffffff;
    width: 240px;
    height: 187px;
    transition: border-color 0.3s ease;
}

.form-type:hover {
    border-color: #67b0c4;
}

.form-type.active {
    border-color: #335862;
}

.form-type span:first-of-type {
    width: 48px;
    height: 48px;
}

.form-type span:nth-of-type(2) {
    font-size: 25px;
    line-height: 140%;
    color: #0d0e0e;
}

.contact-form-row {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
    max-width: 768px;
    margin: 0 auto 24px auto;
}

.contact-form-row-full {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
    max-width: 768px;
    margin: 0 auto 24px auto;
}

.contact-form-row input, .contact-form-row textarea, .contact-form-row select, .contact-form-row button {
    width: 100%;
    padding: 16px 16px;
    border-radius: 6px;
    border: 1px solid #d1d3d5;
    background-color: #ffffff;
    font-size: 16px;
    line-height: 140%;
    color: #0d0e0e;
}

.contact-form-row-full input, .contact-form-row-full textarea, .contact-form-row-full select, .contact-form-row-full button {
    width: 100%;
    padding: 16px 16px;
    border-radius: 6px;
    border: 1px solid #d1d3d5;
    background-color: #ffffff;
    font-size: 16px;
    line-height: 140%;
    color: #0d0e0e;
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.9998 14.9998L7.75684 10.7578L9.17184 9.34375L11.9998 12.1718L14.8278 9.34375L16.2428 10.7578L11.9998 14.9998Z' fill='%230D0E0E'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
    cursor: pointer;
}

option {
    cursor: pointer;
}

.contact-form-legal-container {
    width: 100%;
    max-width: 768px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 32px;
}

.contact-form-legal-container h4 {
    font-size: 32px;
    line-height: 120%;
    font-weight: 700;
    color: #0d0e0e;
    margin-bottom: 48px;
    text-align: center;
    width: 100%;
}

.contact-form-legal-container .checkbox-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 24px;
    width: 100%;
    margin-bottom: 24px;
}

.contact-form-legal-container .checkbox-wrapper input {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    border-radius: 6px;
    border: 1px solid #d1d3d5;
    background: #ffffff;
    margin: 0;
    padding: 0;
    appearance: none;
    cursor: pointer;
}

.contact-form-legal-container .checkbox-wrapper input:checked {
    background-color: #67b0c4;
    border-color: #67b0c4;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='12' viewBox='0 0 16 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.59961 9.7998L1.79961 5.9998L0.399609 7.3998L5.59961 12.5998L15.5996 2.5998L14.1996 1.1998L5.59961 9.7998Z' fill='white'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px 11px;
}

.contact-form-legal-container .checkbox-wrapper label {
    font-size: 21px;
    line-height: 140%;
    color: #0d0e0e;
    opacity: 0.75;
    cursor: pointer;
}

.contact-form-legal-text {
    width: 100%;
    padding-top: 32px;
    margin-bottom: 60px;
}

.contact-form-legal-text p {
    font-size: 16px;
    line-height: 140%;
    color: #000;
    opacity: 0.50;
}

.contact-form-legal-text p a {
    color: #67b0c4;
}

.contact-form-legal-text p a:hover {
    text-decoration: none;
}

.contact-form-send-button-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form-send-button-wrapper button {
    background-color: #67b0c4;
    border-radius: 6px;
    padding: 16px 48px;
    color: #ffffff;
    font-size: 21px;
    line-height: 140%;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 40px;
}

.contact-form-send-button-wrapper button:hover {
    background-color: #335862;
}

.contact-form-required-text {
    width: 100%;
}

.contact-form-required-text p {
    font-size: 16px;
    line-height: 140%;
    color: #000;
    opacity: 0.50;
}

.offer-form-return-btn-wrapper {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 48px;
    max-width: calc(1560px + 64px);
    padding: 0 32px;
}

.offer-form-return-btn-wrapper a {
    background-color: #67b0c4;
    border-radius: 6px;
    padding: 8px 12px;
    color: #ffffff;
    font-size: 12px;
    line-height: 140%;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
}

.offer-form-return-btn-wrapper a:hover {
    background-color: #335862;
}

.offer-form-return-btn-wrapper span:nth-of-type(2) {
    transform: translateY(2px);
}

.homepage-hero-container {
    width: 100%;
    max-width: 2560px;
    margin: 0 auto;
}

.homepage-slider {
    position: relative;
    overflow: hidden;
    min-height: clamp(520px, 48vw, 760px);
}

.homepage-slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.homepage-slide {
    position: relative;
    width: 100%;
    min-width: 100%;
    min-height: clamp(520px, 48vw, 760px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.homepage-slide img,
.homepage-hero-container picture img,
.homepage-slide video {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 0;
    object-fit: cover;
}

.homepage-slide img, .homepage-slide video {
    position: absolute;
    filter: brightness(0.7);
}

.homepage-hero-text-box {
    position: relative;
    z-index: 2;
    width: min(680px, 100%);
    padding: 32px 64px 32px 64px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background-color: rgba(255, 255, 255, 0.25);
    text-align: center;
}

.homepage-hero-text-box h1 {
    color: #ffffff;
    font-size: 80px;
    line-height: 120%;
    font-weight: 400;
    text-transform: uppercase;
}

.homepage-hero-text-box span {
    display: block;
    color: #fff;
    font-size: 21px;
    line-height: 140%;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 48px;
    position: relative;
}

.homepage-hero-text-box span::after {
    display: block;
    content: "";
    width: 140px;
    height: 1px;
    background: #fff;
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    top: 48px;
}

.homepage-hero-text-box a {
    padding: 16px 32px;
    border-radius: 6px;
    background-color: #ffffff;
    color: #0d0e0e;
    text-decoration: none;
    display: block;
    width: fit-content;
    margin: 0 auto;
    font-size: 21px;
    line-height: 140%;
    font-weight: 400;
    max-width: fit-content;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.homepage-hero-text-box a:hover {
    background-color: #335862;
    color: #fff;
}

.homepage-hero-text-box a:focus, .homepage-hero-text-box a:focus-visible {
    background-color: #1a2c31;
}

.homepage-slider-dots {
    position: absolute;
    left: 50%;
    bottom: 44px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(-50%);
}

.homepage-slider-dot {
    width: 34px;
    height: 6px;
    border: 0;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.95);
    opacity: 0.92;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}

.homepage-slider-dot.active {
    background-color: #67b0c4;
    transform: scaleX(1.18);
    opacity: 1;
}

.homepage-slider-dot:hover,
.homepage-slider-dot:focus-visible {
    opacity: 1;
}

.homepage-slider-dot:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 4px;
}

.homepage-text-image-container {
    width: 100%;
    position: relative;
    max-width: 2560px;
    margin: 0 auto;
    background-color: #000;
}

.homepage-text-image-container img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 2560px;
    margin: 0 auto;
}

.homepage-text-image-container h2 {
    font-size: 80px;
    line-height: 120%;
    color: #fff;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.homepage-text-image-container .text-image-title-wrapper {
    position: absolute;
    top: 112px;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.homepage-text-image-container .text-image-title-wrapper span {
    font-size: 32px;
    line-height: 120%;
    color: #fff;
    display: block;
}

.text-blurred {
    padding: 48px 64px 32px 64px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background-color: rgba(255, 255, 255, 0.05) ;
    -webkit-backdrop-filter: blur(17.1px);
    backdrop-filter: blur(17.1px);
    color: #ffffff;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
    justify-content: center;
    width: calc(100% - 48px);
    max-width: 1560px;
}

.text-blurred .text-box {
    max-width: 445px;
    width: 33.33%;
}

.text-blurred .text-box p {
    font-size: 21px;
    line-height: 140%;
    color: #ffffff;
}

.homepage-text-image-cta {
    width: 100%;
    background: #000;
    text-align: center;
    padding: 56px 32px 72px 32px;
    max-width: 2560px;
    margin: 0 auto;
}

.homepage-text-image-cta a {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 6px;
    background-color: #67b0c4;
    color: #ffffff;
    text-decoration: none;
    font-size: 21px;
    line-height: 140%;
    font-weight: 400;
    transition: background-color 0.3s ease;
    min-width: 240px;
    max-width: fit-content;
}

.homepage-text-image-cta a:hover {
    background-color: #335862;
}

.homepage-models-picker {
    width: 100%;
    max-width: 2560px;
    margin: 0 auto;
    background:
        radial-gradient(circle at center 18%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 34%),
        linear-gradient(180deg, #0d0e0e 0%, #141515 64%, #ececec 64%, #f5f5f5 100%);
    position: relative;
    overflow: hidden;
}

.homepage-models-picker::before,
.homepage-models-picker::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.08);
}

.homepage-models-picker::before {
    top: 0;
}

.homepage-models-picker::after {
    top: 72px;
}

.homepage-models-picker-filters {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 18px 24px 17px 24px;
}

.homepage-models-picker-filter {
    position: relative;
    margin-top: 4px;
    padding: 0 0 20px 0;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    font-size: 21px;
    line-height: 140%;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.25s ease;
}

.homepage-models-picker-filter:hover {
    color: rgba(255, 255, 255, 0.85);
}

.homepage-models-picker-filter.active {
    color: #ffffff;
}

.homepage-models-picker-filter.active::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 100%;
    height: 3px;
    background-color: #67b0c4;
    transform: translateX(-50%);
}

.homepage-models-picker-content {
    position: relative;
    min-height: 760px;
    padding: 38px 180px 150px 180px;
}

.homepage-models-picker-model-box,
.homepage-models-picker-visual {
    position: relative;
    z-index: 3;
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.homepage-models-picker.is-transitioning .homepage-models-picker-model-box,
.homepage-models-picker.is-transitioning .homepage-models-picker-visual {
    opacity: 0.55;
    transform: translateY(10px);
}

.homepage-models-picker-model-box {
    color: #ffffff;
    z-index: 4;
}

.homepage-models-picker-model-box h2 {
    font-size: 66px;
    line-height: 120%;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 8px;
}

.homepage-models-picker-price {
    display: block;
    font-size: 21px;
    line-height: 140%;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 40px;
}

.homepage-models-picker-cta {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
}

.homepage-models-picker-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 21px;
    line-height: 140%;
    white-space: nowrap;
    border: 1px solid transparent;
    transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.homepage-models-picker-cta a:hover,
.homepage-models-picker-cta a:focus-visible {
    background-color: #67b0c4;
}

.homepage-models-picker-cta .primary-cta {
    background-color: #ffffff;
    color: #17191b;
}

.homepage-models-picker-cta .primary-cta:hover,
.homepage-models-picker-cta .primary-cta:focus-visible {
    background-color: #e8edf0;
}

.homepage-models-picker-cta .secondary-cta {
    background-color: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.24);
    color: #ffffff;
}

.homepage-models-picker-cta .secondary-cta:hover,
.homepage-models-picker-cta .secondary-cta:focus-visible {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.36);
}

.homepage-models-picker-visual {
    position: absolute;
    left: 50%;
    right: auto;
    bottom: 0;
    width: min(calc(100% - 360px), 1920px);
    min-height: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    transform: translateX(-50%);
}

.homepage-models-picker-visual img {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    max-width: 1560px;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.homepage-models-picker-visual.is-cutout img {
    object-fit: contain;
}

.homepage-models-picker-visual:not(.is-cutout) img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
}

.homepage-models-picker-nav {
    position: absolute;
    top: 47%;
    z-index: 3;
    width: 42px;
    height: 42px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background-color: rgba(255, 255, 255, 0.02);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, opacity 0.25s ease;
}

.homepage-models-picker-nav.prev {
    left: 180px;
    z-index: 9;
}

.homepage-models-picker-nav.next {
    right: 180px;
}

.homepage-models-picker-nav svg {
    width: 18px;
    height: 18px;
}

.homepage-models-picker-nav:hover,
.homepage-models-picker-nav:focus-visible {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.36);
}

.homepage-models-picker-nav:disabled {
    opacity: 0.35;
    cursor: default;
}

.homepage-models-picker-pagination {
    position: absolute;
    left: 50%;
    bottom: 34px;
    z-index: 3;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 1400px) {
    .homepage-models-picker-content {
        min-height: 700px;
        padding: 34px 124px 138px 124px;
    }

    .homepage-models-picker-visual {
        width: min(calc(100% - 124px), 980px);
        bottom: 50px;
    }

    .homepage-models-picker-nav.prev {
        left: 124px;
    }

    .homepage-models-picker-nav.next {
        right: 124px;
    }
}

.homepage-models-picker-page {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    border: 1px solid rgba(13, 14, 14, 0.18);
    background-color: rgba(255, 255, 255, 0.92);
    color: rgba(0, 0, 0, 0.5);
    font-size: 21px;
    line-height: 140%;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.homepage-models-picker-page.active {
    background-color: #67b0c4;
    border-color: #67b0c4;
    color: #ffffff;
}

.homepage-models-picker-page:hover,
.homepage-models-picker-page:focus-visible {
    border-color: #67b0c4;
}

.basic-text-image-banner {
    width: 100%;
    max-width: 2560px;
    margin: 0 auto;
    position: relative;
}

.basic-text-image-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.basic-text-image-banner .basic-text-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    text-align: center;
}

.basic-text-image-banner .basic-text-container h3 {
    font-size: 80px;
    line-height: 120%;
    color: #ffffff;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.basic-text-image-banner .basic-text-container span {
    font-size: 47px;
    line-height: 120%;
    color: #ffffff;
    display: block;
    display: block;
    margin-bottom: 70px;
}

.basic-text-image-banner .basic-text-container a {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 6px;
    background-color: #67b0c4;
    color: #ffffff;
    text-decoration: none;
    font-size: 21px;
    line-height: 140%;
    font-weight: 400;
    transition: background-color 0.3s ease;
}
.basic-text-image-banner .basic-text-container a:hover {
    background-color: #335862;
}

.homepage-offers-container {
    width: 100%;
    max-width: 2560px;
    margin: 0 auto;
    padding: 112px 24px 112px 24px;
}

.homepage-offers-container h2 {
    font-size: 66px;
    line-height: 120%;
    color: #000;
    margin-bottom: 56px;
    text-align: center;
}

.homepage-offers-viewport {
    width: 100%;
    max-width: 1560px;
    margin: 0 auto;
    overflow: hidden;
}

.homepage-offers-slider {
    width: max-content;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    transition: transform 0.45s ease;
    will-change: transform;
}

.homepage-offers-slider .homepage-offer {
    flex: 0 0 auto;
    width: 100%;
    max-width: 504px;
    border-radius: 12px;
    overflow: hidden;
    padding-bottom: 32px;
    position: relative;
    background-color: #000;
}

.homepage-offer img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.homepage-offer h4 {
    font-size: 32px;
    line-height: 120%;
    color: #fff;
    margin-bottom: 12px;
    padding-top: 32px;
    padding-left: 32px;
    padding-right: 32px;
}

.homepage-offer p {
    font-size: 21px;
    line-height: 140%;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 12px;
    padding-left: 32px;
    padding-right: 32px;
}

.homepage-offer .date {
    font-size: 21px;
    font-weight: 700;
    line-height: 140%;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 25px;
    display: block;
    padding-left: 32px;
    padding-right: 32px;
}

.homepage-offer a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: fit-content;
    padding: 8px 24px;
    border-radius: 6px;
    background-color: transparent;
    color: #ffffff;
    text-decoration: none;
    border: 2px solid #67b0c4;
    text-transform: uppercase;
    font-size: 21px;
    line-height: 140%;
    font-weight: 400;
    margin-left: 32px;
    transition: background-color 0.3s ease;
}

.homepage-offer a:hover {
    background-color: #335862;
}

.homepage-offers-controls {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.homepage-offers-arrow {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    border: none;
    background-color: #67b0c4;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.25s ease, opacity 0.25s ease;
}

.homepage-offers-arrow svg {
    width: 18px;
    height: 18px;
}

.homepage-offers-arrow:hover,
.homepage-offers-arrow:focus-visible {
    background-color: #335862;
}

.homepage-offers-arrow:disabled {
    opacity: 0.45;
    cursor: default;
}

.homepage-offers-counter {
    font-size: 21px;
    line-height: 140%;
    color: rgba(0, 0, 0, 0.75);
}


.contact-hero-container {
    position: relative;
    width: 100%;
    height: auto;
    background-color: #000;
    max-width: 2560px;
    margin: 0 auto;
}

.contact-hero-container picture {
    width: 100%;
    max-width: 2560px;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: brightness(0.25);
}

.contact-hero-container picture img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
}

.contact-hero-text-container {
    width: auto;
    height: auto;
    padding: 32px 62px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background-color: rgba(255, 255, 255, 0.25);
    color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.contact-hero-text-container h1 {
    font-size: 80px;
    line-height: 120%;
    color: #ffffff;
    text-transform: uppercase;
    white-space: nowrap;
}

.contact-hero-text-container span {
    font-size: 21px;
    line-height: 140%;
    color: #ffffff;
    font-weight: 300;
    text-transform: uppercase;
}

.contact-content-container {
    width: 100%;
    background-color: #f5f5f5;
    padding: 150px 24px 72px 24px;
    max-width: 2560px;
    margin: 0 auto;
}

.contact-text-box, .contact-images-box, .contact-info-box {
    width: 100%;
    max-width: 1560px;
    margin: 0 auto;
}

.contact-text-box {
    border-radius: 6px;
    border-radius: 1px solid #d1d3d5;
    background-color: #fff;
    padding: 24px 32px;
    margin-bottom: 24px;
}

.contact-text-box h2 {
    font-size: 32px;
    line-height: 120%;
    color: #0d0e0e;
    margin-bottom: 8px;
    font-weight: 700;
}

.contact-text-box p {
    font-size: 25px;
    line-height: 140%;
    font-size: 400;
    color: rgba(0, 0, 0, 0.75);
}

.contact-text-box p a {
    color: #67b0c4;
    text-decoration: none;
}

.contact-text-box p a:hover {
    text-decoration: underline;
}

.contact-images-box {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 24px;
}

.contact-images-box img, .contact-images-box iframe {
    width: calc(50% - 12px);
    flex: 0 0 calc(50% - 12px);
    aspect-ratio: 768 / 432;
    border-radius: 6px;
}

.contact-images-box img:nth-child(3) {
    width: 100%;
    flex: 0 0 100%;
}

.contact-info-box {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.05);
    border: 1px solid #d1d3d5;
    border-radius: 6px;
    padding: 24px 32px;
}

.contact-info-box h3 {
    font-size: 25px;
    line-height: 140%;
    color: #0d0e0e;
    margin-bottom: 8px;
    font-weight: 700;
}

.contact-info-box p {
    font-size: 21px;
    line-height: 140%;
    margin-bottom: 8px;
    color: rgba(0, 0, 0, 0.75);
}

.contact-info-box p a {
    color: #67b0c4;
    text-decoration: none;
}

.contact-info-box p a:hover {
    text-decoration: underline;
}

.warranty-box-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 72px 0 72px 0;
    gap: 24px;
    background-color: #f5f5f5;
    max-width: 2560px;
    margin: 0 auto;
}

.warranty-box {
    --warranty-box-gap: 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 24px;
    max-width: calc(1560px + 48px);
    gap: var(--warranty-box-gap);
}

.warranty-box.warranty-box-reverse {
    flex-direction: row-reverse;
}

.warranty-box.warranty-box-reverse .warranty-box-text {
    max-width: 635px;
}

.warranty-box-text,
.warranty-box-image {
    flex: 0 1 calc((100% - var(--warranty-box-gap)) / 2);
    max-width: calc((100% - var(--warranty-box-gap)) / 2);
    min-width: 0;
}

.warranty-box-text p, .warranty-box-text h3 {
    max-width: 635px;
}

.warranty-box-image {
    max-width: 768px;
}

@media screen and (max-width: 1250px) {
    .warranty-box {
        flex-direction: column;
    }

    .warranty-box.warranty-box-reverse {
        flex-direction: column;
    }

    .warranty-box-text,
    .warranty-box-image {
        flex: 0 1 100%;
        max-width: 100%;
        width: 100%;
    }

    .warranty-box-container {
        gap: 72px;
    }

    .warranty-box-text p, .warranty-box-text h3 {
        max-width: none;
    }
    .warranty-box.warranty-box-reverse .warranty-box-text {
        max-width: none;
    }
}

.warranty-box-image img {
    width: 100%;
    height: auto;
    display: block;
}

.warranty-box-text h3 {
    font-size: 47px;
    line-height: 120%;
    color: #0d0e0e;
    margin-bottom: 8px;
}

.warranty-box-text p {
    font-size: 25px;
    line-height: 140%;
    color: rgba(0, 0, 0, 0.75);
}

.warranty-cards-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, rgba(209, 211, 213, 0.5) 25%, rgba(245, 245, 245, 0.5) 100%);
    padding: 72px 0 72px 0;
    border-top: 1px solid #d1d3d5;
    border-bottom: 1px solid #d1d3d5;
    max-width: 2560px;
    margin: 0 auto;
}

.warranty-cards-container h3 {
    font-size: 47px;
    line-height: 120%;
    color: #0d0e0e;
    margin-bottom: 56px;
}

.warranty-cards-container.homepage-warranty-cards-container h3 {
    margin-bottom: 8px;
}

.warranty-cards-container.homepage-warranty-cards-container .warranty-cards-subtitle {
    font-size: 32px;
    line-height: 120%;
    color: rgba(0, 0, 0, 0.75);
    margin-bottom: 64px;
    display: block;
}

.warranty-card-wrapper {
    width: 100%;
    padding: 0 24px;
    max-width: calc(1560px + 48px);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 113px;
    position: relative;
    flex-wrap: wrap;
}

.warranty-cards-container.homepage-warranty-cards-container .warranty-card-wrapper {
    margin-bottom: 0;
}

.warranty-card-wrapper::after {
    content: "";
    width: 140px;
    height: 1px;
    background-color: #67b0c4;
    position: absolute;
    bottom: -56px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.warranty-cards-container.homepage-warranty-cards-container .warranty-card-wrapper::after {
    display: none;
}

.warranty-cards-container.homepage-warranty-cards-container .warranty-card {
    text-decoration: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.warranty-cards-container.homepage-warranty-cards-container .warranty-card:hover {
    border-color: #67b0c4;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.warranty-card {
    width: 100%;
    max-width: 372px;
    padding: 24px 32px;
    border-radius: 6px;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
    min-height: 192px;
}

.warranty-card img {
    width: 64px;
    height: 64px;
    margin-bottom: 8px;
}

.warranty-card span {
    font-size: 25px;
    line-height: 140%;
    color: #0d0e0e;
    text-align: center;
}

.warranty-cards-cta-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.warranty-cards-cta-container a {
    text-decoration: none;
    background-color: #67b0c4;
    border-radius: 6px;
    padding: 16px 32px;
    color: #ffffff;
    font-size: 21px;
    line-height: 140%;
    transition: background-color 0.3s ease;
}

.warranty-cards-cta-container a:hover {
    background-color: #335862;
}

.warranty-hero-container {
    width: 100%;
    height: clamp(420px, 46vw, 760px);
    max-width: 2560px;
    background-color: #000;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.warranty-hero-container picture {
    width: 100%;
    height: 100%;
    max-width: 1920px;
    margin: 0 auto;
    display: block;
    filter: brightness(0.25);
}

.warranty-hero-container img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.warranty-hero-container h2 {
    font-size: 66px;
    line-height: 120%;
    color: #ffffff;
    text-align: center;
    margin-bottom: 8px;
}

.warranty-hero-text-wrapper {
    position: absolute;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1065px;
    text-align: center;
}

.warranty-hero-container p {
    font-size: 32px;
    line-height: 120%;
    color: #ffffff;
    text-align: center;
    position: relative;
    margin-bottom: 120px;
}

.warranty-hero-container p::after {
    content: "";
    display: block;
    width: 140px;
    height: 1px;
    background-color: #67b0c4;
    position: absolute;
    left: 50%;
    bottom: -64px;
    transform: translateX(-50%);
}

.warranty-hero-container a {
    text-decoration: none;
    background-color: #67b0c4;
    border-radius: 6px;
    padding: 16px 32px;
    color: #ffffff;
    font-size: 21px;
    line-height: 140%;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.warranty-hero-container a:hover {
    background-color: #335862;
}

.documentation-container {
    width: 100%;
    background-color: #f5f5f5;
    padding: 72px 24px;
    max-width: 2560px;
    margin: 0 auto;
}

.documentation-text-box {
    background-color: #ffffff;
    width: 100%;
    max-width: 1560px;
    text-align: center;
    margin: 0 auto;
    padding: 64px 32px;
    border-radius: 12px;
    border: 1px solid #d1d3d5;
    margin-bottom: 24px;
}

.documentation-text-box p {
    font-size: 32px;
    line-height: 140%;
    color: #0d0e0e;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.documentation-list {
    display: flex;
    gap: 24px;
    row-gap: 40px;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 1560px;
    margin: 0 auto 0 auto;
    flex-wrap: wrap;
    width: 100%;
}

.documentation-wrapper {
    width: calc(50% - 12px);
    flex-basis: calc(50% - 12px);
}

.documentation {
    width: 100%;
    padding: 32px;
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid #d1d3d5;
    margin-bottom: 24px;
}

.documentation img {
    border-radius: 6px;
    width: 100%;
    display: block;
    margin-bottom: 24px;
}

.documentation h4 {
    font-size: 32px;
    line-height: 120%;
    color: #0d0e0e;
    margin-bottom: 8px;
}

.documentation p {
    font-size: 21px;
    line-height: 140%;
    color: rgba(0, 0, 0, 0.75);
}

.documentation-box-cta-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
}

.documentation-box-cta-container a {
    padding: 16px 32px;
    border-radius: 6px;
    background-color: #67b0c4;
    color: #ffffff;
    font-size: 21px;
    line-height: 140%;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.documentation-box-cta-container a:hover {
    background-color: #335862;
}

.documentation-box-cta-container a span:last-of-type {
    display: inline-block;
    transform: translateY(3px);
    transition: transform 0.3s ease;
}

.special-offer-container {
    width: 100%;
    background-color: #f5f5f5;
    padding: 72px 32px 27px 32px;
    max-width: 2560px;
    margin: 0 auto;
}

.special-offer-filters-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    max-width: 1560px;
    padding-bottom: 24px;
    margin: 0 auto 24px auto;
    padding-top: 33px;
    border-top: 1px solid #DCDCDC;
    border-bottom: 1px solid #DCDCDC;
}

.special-offer-filters-container.news-filters-container {
    justify-content: center;
}

.special-offer-models-container, .special-offer-fuel-wrapper {
    width: 100%;
    max-width: 1560px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
}

.special-offer-fuel-wrapper {
    justify-content: flex-end;
}


.special-offer-models-container span, .special-offer-fuel-wrapper span {
    font-size: 21px;
    line-height: 140%;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
}

.special-offer-models-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.special-offer-models-wrapper .special-offer-model-box, .special-offer-fuel-box {
    display: flex;  
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}

.special-offer-model-box input, .special-offer-fuel-box input {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    border-radius: 6px;
    border: 1px solid #d1d3d5;
    background: #ffffff;
    margin: 0;
    padding: 0;
    appearance: none;
    cursor: pointer;
}

.special-offer-model-box input:checked, .special-offer-fuel-box input:checked {
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 14L0 8L2 6L6 10L14 2L16 4' fill='%2367B0C4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px 14px;
}


.special-offer-model-box label, .special-offer-fuel-box label {
    font-size: 21px;
    line-height: 140%;
    color: rgba(0, 0, 0, 0.75);
    cursor: pointer;
    white-space: nowrap;
}

.special-offer-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 24px;
    width: 100%;
    max-width: 1560px;
    margin: 0 auto;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.special-offer-box {
    flex: 0 0 calc((100% - 48px) / 3);
    width: calc((100% - 48px) / 3);
    max-width: calc((100% - 48px) / 3);
    border-radius: 12px;
    background-color: #000;
    padding-bottom: 32px;
}

@media (max-width: 1200px) {
    .special-offer-box {
        flex: 0 0 calc((100% - 24px) / 2);
        width: calc((100% - 24px) / 2);
        max-width: calc((100% - 24px) / 2);
    }
}

@media (max-width: 768px) {
    .special-offer-box {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
    }
}

.special-offer-box a.image-link {
    display: block;
    border-radius: 0;
    border: none;
    padding: 0;
    width: 100%;
    margin-left: 0;
    border-radius: 12px 12px 0 0;
    margin-bottom: 32px;
    line-height: 1;
    background-color: transparent;
}

.special-offer-box a.image-link:hover {
    background-color: transparent;
}


.special-offer-box .image-link:hover ~ h4 a,
.special-offer-box .image-link:focus-visible ~ h4 a,
.special-offer-box .image-link:focus ~ h4 a {
    color: #67b0c4;
}

.special-offer-box .image-link:hover ~ a.special-offer-cta,
.special-offer-box .image-link:focus-visible ~ a.special-offer-cta,
.special-offer-box .image-link:focus ~ a.special-offer-cta {
    background-color: #67b0c4;
    color: #fff;
}

.special-offer-box h4:hover ~ a.special-offer-cta,
.special-offer-box h4:focus-within ~ a.special-offer-cta {
    background-color: #67b0c4;
    color: #fff;
}

.special-offer-box:has(a.special-offer-cta:hover) h4 a,
.special-offer-box:has(a.special-offer-cta:focus-visible) h4 a,
.special-offer-box:has(a.special-offer-cta:focus) h4 a {
    color: #67b0c4;
}
 

.special-offer-box img {
    width: 100%;
    height: auto;
    border-radius: 12px 12px 0 0;
    transition: transform 0.3s ease;
}

.special-offer-box h4 {
    color: #fff;
    font-size: 32px;
    line-height: 120%;
    margin-bottom: 12px;
    padding-left: 32px;
    padding-right: 32px;
}

.special-offer-box h4 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.special-offer-box h4 a:hover {
    color: #67b0c4;
}

.special-offer-box p {
    font-size: 21px;
    line-height: 140%;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 12px;
    padding-left: 32px;
    padding-right: 32px;
}

.special-offer-box .special-offer-date {
    font-size: 21px;
    line-height: 140%;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 25px;
    padding-left: 32px;
    padding-right: 32px;
    font-weight: 700;
    display: block;
}

.special-offer-box > a {
    border-radius: 6px;
    border: 2px solid #67b0c4;
    padding: 8px 24px;
    display: block;
    text-decoration: none;
    width: fit-content;
    margin-left: 32px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.special-offer-box > a:hover {
    background-color: #67b0c4;
    color: #fff;
}

.special-offer-box > a .text {
    font-size: 16px;
    line-height: 140%;
    color: #fff;
    text-transform: uppercase;
    margin-right: 8px;
    display: inline-block;
}

.special-offer-box > a .icon {
    width: 12px;
    height: 10px;
}

.special-offer-pagination-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
        padding-top: 28px;
    padding-bottom: 28px;
    border-top: 1px solid;
    border-bottom: 1px solid;
    border-image-source: linear-gradient(to right, #fff 0%, #d1d3d5 49%, #d1d3d5 51%, #fff 100%);
    border-image-slice: 1;
}

.special-offer-pagination-container .prev-page {
    width: 32px;
    height: 32px;
    padding: 8px;
    border-radius: 6px;
    background-color: #67b0c4;
    border: none;
    outline: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.special-offer-pagination-container .prev-page:hover {
    background-color: #335862;
}


.special-offer-pagination-container .pagination-label {
    font-size: 16px;
    line-height: 140%;
    color: #000;
}

.special-offer-pagination-container .next-page {
    width: 32px;
    height: 32px;
    padding: 8px;
    border-radius: 6px;
    background-color: #67b0c4;
    border: none;
    outline: none;
    cursor: pointer;
    transition: background-color 0.3s ease;

}

.special-offer-pagination-container .next-page:hover {
    background-color: #335862;
}

.offer-contact-form-container h3 {
    font-size: 47px;
    line-height: 120%;
    color: #000;
    margin-bottom: 48px;
    font-weight: 700;
}

.offer-details-container {
    width: 100%;
    margin: 0 auto;
    padding: 72px 0 0 0;
    height: 1400px;
    max-width: 2560px;
    margin: 0 auto;
    background: linear-gradient(180deg, #fff 0%, #fff 49%, #d1d3d5 50%, #fff 80%);
}

.offer-details-heading-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 48px;
    margin: 0 auto;
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
    margin-bottom: 48px;
}

.offer-details-heading-wrapper h2 {
    font-size: 66px;
    line-height: 120%;
    color: #0d0e0e;
    font-weight: 700;
    text-transform: uppercase;
}

.offer-details-heading-wrapper h3 {
    font-size: 47px;
    line-height: 120%;
    font-weight: 400;
    text-align: center;
    color: #0d0e0e;
}

.offer-details-text-wrapper {
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
    max-width: 1065px;
    margin: 0 auto;
    text-align: center;
}

.offer-details-text-wrapper p {
    font-size: 32px;
    line-height: 120%;
    color: rgba(0, 0, 0, 0.75);
}

.offer-details-date {
    font-size: 32px;
    line-height: 120%;
    color: rgba(0, 0, 0, 0.75);
    padding-top: 24px;
    font-weight: 700;
    display: block;
}

.offer-details-image-wrapper {
    width: 100%;
    max-width: 1560px;
    margin: 0 auto 0 auto;
    transform: translateY(-15%);
}

.offer-details-image-wrapper img {
    width: 100%;
    height: auto;
}

.offer-details-content-container {
    width: 100%;
    max-width: 1560px;
    margin: 0 auto;
    padding: 0 24px 48px 24px;
    transform: translateY(-40%);
}

.offer-details-content-container p {
    font-size: 16px;
    line-height: 140%;
    color: rgba(0, 0, 0, 0.75);
    margin-bottom: 24px;
}

@media screen and (max-width: 1250px) {
    .offer-details-container {
        height: 1250px;
    }
}

@media screen and (max-width: 1000px) {
    .offer-details-content-container {
        transform: translateY(-20%);
    }
}


@media screen and (max-width: 800px) {
    .offer-details-content-container {
        transform: translateY(-10%);
    }
}

@media screen and (max-width: 600px) {
    .offer-details-content-container {
        transform: translateY(0%);
    }
    .offer-details-image-wrapper {
        transform: translateY(-10%);
    }
    .offer-details-container {
        height: auto;
    }
}

.news-container {
    width: 100%;
    background-color: #f5f5f5;
    padding: 72px 32px 16px 32px;
    max-width: 2560px;
    margin: 0 auto;
}

.news-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 24px;
    width: 100%;
    max-width: 1560px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.news-box {
    flex: 0 0 calc((100% - 48px) / 3);
    width: calc((100% - 48px) / 3);
    max-width: calc((100% - 48px) / 3);
    border-radius: 12px;
    background-color: #000;
    padding-bottom: 32px;
}

@media (max-width: 1200px) {
    .news-box {
        flex: 0 0 calc((100% - 24px) / 2);
        width: calc((100% - 24px) / 2);
        max-width: calc((100% - 24px) / 2);
    }
    .warranty-hero-text-wrapper {
        top: 80px;
    }
    .warranty-hero-container p {
        font-size: 24px;
        margin-bottom: 56px;
    }
    .warranty-hero-container p::after {
        bottom: -22px;
    }
}

@media (max-width: 768px) {
    .news-box {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
    }
}

.news-box a.image-link {
    display: block;
    border-radius: 0;
    border: none;
    padding: 0;
    width: 100%;
    margin-left: 0;
    border-radius: 12px 12px 0 0;
    margin-bottom: 32px;
    line-height: 1;
    background-color: transparent;
}

.news-box a.image-link:hover {
    background-color: transparent;
}


.news-box .image-link:hover ~ h4 a,
.news-box .image-link:focus-visible ~ h4 a,
.news-box .image-link:focus ~ h4 a {
    color: #67b0c4;
}

.news-box .image-link:hover ~ a.news-cta-wrapper,
.news-box .image-link:focus-visible ~ a.news-cta-wrapper,
.news-box .image-link:focus ~ a.news-cta-wrapper {
    background-color: #67b0c4;
    color: #fff;
}

.news-box h4:hover ~ a.news-cta-wrapper,
.news-box h4:focus-within ~ a.news-cta-wrapper {
    background-color: #67b0c4;
    color: #fff;
}

.news-box:has(a.news-cta-wrapper:hover) h4 a,
.news-box:has(a.news-cta-wrapper:focus-visible) h4 a,
.news-box:has(a.news-cta-wrapper:focus) h4 a {
    color: #67b0c4;
}

.news-box img {
    width: 100%;
    height: auto;
    border-radius: 12px 12px 0 0;
    transition: transform 0.3s ease;
}

.news-box h4 {
    font-size: 32px;
    line-height: 120%;
    color: #fff;
    margin-bottom: 24px;
    padding-right: 32px;
    padding-left: 32px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
}

.news-box h4 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-box h4 a:hover {
    color: #67b0c4;
}

.news-box p {
    font-size: 21px;
    line-height: 140%;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 24px;
    padding-left: 32px;
    padding-right: 32px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-clamp: 3;
}

.news-box .news-date {
    font-size: 16px;
    line-height: 140%;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
    padding-left: 32px;
    padding-right: 32px;
    display: block;
}

.news-box > a {
    border-radius: 6px;
    border: 2px solid #67b0c4;
    padding: 8px 24px;
    display: block;
    text-decoration: none;
    width: fit-content;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-left: 32px;
}

.news-box > a:hover {
    background-color: #67b0c4;
    color: #fff;
}

.news-box > a .text {
    font-size: 16px;
    line-height: 140%;
    color: #fff;
    text-transform: uppercase;
    margin-right: 8px;
    display: inline-block;
}

.news-box > a .icon {
    width: 12px;
    height: 10px;
}

.news-pagination-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
    padding-top: 28px;
    padding-bottom: 28px;
    border-top: 1px solid;
    border-bottom: 1px solid;
    border-image-source: linear-gradient(to right, #fff 0%, #d1d3d5 49%, #d1d3d5 51%, #fff 100%);
    border-image-slice: 1;
}

.news-pagination-container .disabled {
    opacity: 0.4;
    pointer-events: none;
}

.news-pagination-container .prev-page {
    width: 32px;
    height: 32px;
    padding: 8px;
    border-radius: 6px;
    background-color: #67b0c4;
    border: none;
    outline: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.news-pagination-container .prev-page:hover {
    background-color: #335862;
}

.news-pagination-container .pagination-label {
    font-size: 16px;
    line-height: 140%;
    color: #000;
}

.news-pagination-container .next-page {
    width: 32px;
    height: 32px;
    padding: 8px;
    border-radius: 6px;
    background-color: #67b0c4;
    border: none;
    outline: none;
    cursor: pointer;
    transition: background-color 0.3s ease;

}

.news-pagination-container .next-page:hover {
    background-color: #335862;
}

.news-details-container {
    width: 100%;
    max-width: calc(1560px + 64px);
    margin: 0 auto;
    padding: 72px 32px 72px 32px;
}

.news-details-image-wrapper {
    width: 100%;
    margin-bottom: 35px;
}

.news-details-image-wrapper img {
    width: 100%;
    height: auto;
}

.news-details-content-wrapper {
    width: 100%;
}

.news-details-content-wrapper h1 {
    font-size: 66px;
    line-height: 120%;
    color: #0d0e0e;
    margin-bottom: 16px;
}

.news-details-content-wrapper h2 {
    font-size: 32px;
    line-height: 120%;
    color: #0d0e0e;
    margin-bottom: 16px;
}

.news-details-content-wrapper h3 {
    font-size: 28px;
    line-height: 120%;
    color: #0d0e0e;
    margin-bottom: 16px;
}

.news-details-content-wrapper h4 {
    font-size: 25px;
    line-height: 120%;
    color: #0d0e0e;
    margin-bottom: 16px;
}

.news-details-content-wrapper h5 {
    font-size: 21px;
    line-height: 120%;
    color: #0d0e0e;
    margin-bottom: 16px;
}

.news-details-content-wrapper h6 {
    font-size: 21px;
    line-height: 120%;
    color: #0d0e0e;
    margin-bottom: 8px;
}

.news-details-date {
    font-size: 21px;
    line-height: 140%;
    color: rgba(0, 0, 0, 0.75);
    display: block;
}

.news-details-content-wrapper .subtitle {
    font-size: 32px;
    line-height: 120%;
    color: rgba(0, 0, 0, 0.75);
    margin-bottom: 48px;
    display: block;
}

.news-details-content-wrapper p {
    font-size: 21px;
    line-height: 140%;
    color: rgba(0, 0, 0, 0.75);
    margin-bottom: 24px;
}

.news-details-content-wrapper .intro-text-wrapper p {
    font-size: 32px;
    line-height: 120%;
    margin-bottom: 48px;
}

.news-details-content-wrapper p a {
    color: #67b0c4;
    text-decoration: underline;
}

.news-details-content-wrapper p a:hover {
    text-decoration: none;
}

.news-details-content-wrapper ul {
    list-style: none;
    padding-left: 24px;
    margin-bottom: 24px;
}

.news-details-content-wrapper ul li {
    font-size: 21px;
    line-height: 140%;
    color: rgba(0, 0, 0, 0.75);
    margin-bottom: 6px;
    position: relative;
    padding-left: 24px;
}

.news-details-content-wrapper ul li::before {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 2px;
    background-color: #67b0c4;
    position: absolute;
    left: 0;
    top: 7.5px;
}

.news-details-content-wrapper ul li a {
    color: #67b0c4;
    text-decoration: none;
}

.news-details-content-wrapper ul li a:hover {
    text-decoration: underline;
}

.news-details-content-wrapper ol {
    list-style-type: decimal;
    padding-left: 44px;
    margin-bottom: 24px;
    color: #67b0c4;
    font-size: 21px;
    line-height: 140%;
}

.news-details-content-wrapper ol li::marker {
    color: #67b0c4;
    font-size: 21px;
    line-height: 140%;
    font-weight: 700;
}

.news-details-content-wrapper ol li {
    font-size: 21px;
    line-height: 140%;
    color: #000;
    margin-bottom: 6px;
    padding-left: 4px;
}

.news-details-content-wrapper ol li a {
    color: #67b0c4;
    text-decoration: none;
}

.news-details-content-wrapper ol li a:hover {
    text-decoration: underline;
}

.news-details-gallery {
    width: 100%;
    margin: 48px 0;
}

.news-details-gallery-slider {
    width: 100%;
}

.news-details-gallery-item {
    width: 100%;
}

.news-details-gallery-item a {
    display: block;
    width: 100%;
}

.news-details-gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

.news-details-gallery-track .slick-list {
    margin: 0 -12px;
}

.news-details-gallery-track .news-details-gallery-item {
    padding: 0 12px;
}

.news-details-gallery-dots {
    width: 100%;
    margin-top: 24px;
}

.news-details-gallery-dots .slick-dots {
    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.news-details-gallery-dots .slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
}

.news-details-gallery-dots .slick-dots li button {
    display: block;
    width: 8px;
    height: 8px;
    border: none;
    border-radius: 99px;
    background-color: #67b0c4;
    opacity: 0.6;
    padding: 0;
    font-size: 0;
    cursor: pointer;
    transition: width 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

.news-details-gallery-dots .slick-dots li button::before {
    content: '';
}

.news-details-gallery-dots .slick-dots li button:hover {
    background-color: #335862;
    opacity: 1;
}

.news-details-gallery-dots .slick-dots li.slick-active button {
    width: 24px;
    opacity: 1;
}

.news-details-return-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding-top: 48px;
}

.news-details-return-wrapper a {
    text-decoration: none;
    background-color: #67b0c4;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 6px;
    padding: 8px 12px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.news-details-return-wrapper a:hover {
    background-color: #335862;
}

.news-details-return-wrapper a .text {
    font-size: 12px;
    line-height: 140%;
    font-weight: 700;
    color: #fff;
}

.news-details-return-wrapper a .icon {
    width: 16px;
    height: 16px;
}


/* ============================================
   RESPONSIVE MEDIA QUERIES
   ============================================ */

@media (max-width: 1400px) {
    .special-offer-filters-container {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .special-offer-fuel-wrapper {
        justify-content: flex-start;
    }
    .homepage-text-image-container {
        padding-bottom: 150px;
        background-color: #000;
    }
}

@media (max-width: 1300px) {

    .homepage-text-image-container h2 {
        font-size: 48px;
    }

    .homepage-text-image-container .text-image-title-wrapper span {
        font-size: 18px;
    }

    .basic-text-image-banner .basic-text-container h3 {
        font-size: 32px;
    }

    .basic-text-image-banner .basic-text-container span {
        font-size: 16px;
    }

    .basic-text-image-banner .basic-text-container a {
        font-size: 16px;
        padding: 12px 24px;
    }

    .hamburger-menu-container {
        display: flex;
        width: 48px;
        height: 48px;
        position: relative;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 1001;
    }

    .hamburger-menu-container span {
        position: absolute;
        width: 28px;
        height: 2px;
        background: #fff;
        border-radius: 999px;
        transition: all 0.3s ease;
    }

    .hamburger-menu-container span:nth-child(1) {
        transform: translateY(-8px);
    }

    .hamburger-menu-container span:nth-child(2) {
        transform: translateY(0);
    }

    .hamburger-menu-container span:nth-child(3) {
        transform: translateY(8px);
    }

    /* ACTIVE -> X */

    .hamburger-menu-container.active span:nth-child(1) {
        transform: rotate(45deg);
    }

    .hamburger-menu-container.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu-container.active span:nth-child(3) {
        transform: rotate(-45deg);
    }

    .header-cta-wrapper {
        display: none;
    }

    .menu-container {
        display: flex;
        position: absolute;
        top: 72px;
        left: -24px;
        width: 100vw;
        background: #000;
        padding: 24px;
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
    }

    .menu-container.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .menu-container nav {
        width: 100%;
    }

    .menu-container nav ul {
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }

    .menu-container nav ul li {
        width: 100%;
    }

    .menu-container nav ul li a {
        display: flex;
        width: 100%;
        padding: 12px 0;
        color: #fff;
    }

    .hamburger-menu-container.active svg {
        transform: rotate(90deg);
        transition: transform 0.3s ease;
    }
    
    .dropdown-column {
        flex-direction: column;
        width: 100%;
        gap: 24px;
    }
    .dropdown-content {
        gap: 24px;
    }
    .dropdown-content.models-container-menu .dropdown-column {
        grid-template-columns: repeat(1, 1fr);
        gap: 24px;
    }
    .dropdown-content.models-container-menu {
        gap: 24px;
        width: 100%;
    }
}

@media (max-width: 1200px) {
        .homepage-text-image-container {
        padding-bottom: 250px;
    }
}

/* Tablet landscape and smaller desktops (1024px and below) */
@media (max-width: 1024px) {
        .ncap-container {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        max-height: none;
        padding: 70px 24px;
    }
    
    .ncap-container .ncap-text-wrapper, .ncap-container .ncap-image-wrapper {
        flex: none;
        max-width: none;
    }
    
    .ncap-text-wrapper h4 {
        font-size: 28px;
    }
    
    .ncap-text-wrapper p {
        font-size: 18px;
    }
    .header-container {
        padding: 0 24px;
    }

    .header-wrapper {
        margin-right: 32px;
    }

    .menu-container nav ul {
        gap: 24px;
    }

    .menu-container nav ul li a {
        font-size: 18px;
    }

    .model-hero-card-container h1 {
        font-size: 64px;
    }

    .model-hero-card-container .description {
        font-size: 28px;
    }

    .model-stats-box-container,
    .model-engines-wrapper,
    .model-engines-data-row,
    .model-versions-row,
    .model-cards-wrapper,
    .model-color-image-container {
        padding: 0 24px;
    }

    .model-engines-wrapper {
        padding-bottom: 48px;
    }

    .model-stats-box-container {
        flex-wrap: wrap;
    }

    .model-stats-box {
        width: 50%;
        flex: 1 1 calc(50% - 12px);
    }

    .model-engines-data-row {
        padding-bottom: 32px;
    }

    .model-versions-row {
        padding-bottom: 32px;
    }

    .model-gallery-one-half-carousel-wrapper {
        padding-left: 0;
    }


    .model-gallery-two-half-carousel-wrapper {
        padding-left: 0;
    }
    
    .model-gallery-five-carousel-wrapper {
        padding-left: 0;
    }

    .model-engines-cards {
        flex-wrap: wrap;
    }

    .model-hero-card-container {
        padding: 24px 24px 32px 24px;
    }
    .model-hero-card-container h1 {
        font-size: 60px;
    }
    .model-hero-card-container .description {
        font-size: 25px;
        margin-bottom: 64px;
    }
    .model-engines-data-row, .model-versions-row {
        padding: 0 0 32px 0;
    }

    .contact-hero-text-container {
        padding: 24px 40px;
    }

    .contact-hero-text-container h1 {
        font-size: 64px;
    }

    .contact-hero-text-container span {
        font-size: 18px;
    }

    .contact-content-container {
        padding: 96px 24px 56px 24px;
    }

    .homepage-models-picker-content {
        min-height: 600px;
        padding: 14px 88px 126px 88px;
    }

    .homepage-models-picker-model-box h2 {
        font-size: 55px;
    }

    .homepage-models-picker-price {
        margin-bottom: 24px;
    }


    .homepage-models-picker-nav.prev {
        left: 88px;
    }

    .homepage-models-picker-nav.next {
        right: 88px;
    }

    .homepage-models-picker-visual {
        width: min(calc(100% - 88px), 820px);
        bottom: 84px;
    }

    .homepage-models-picker-visual img {
        width: min(100%, 760px);
    }

    .homepage-slide {
        min-height: 620px;
        padding: 0 24px 0 24px;
    }

    .homepage-hero-text-box {
        width: min(620px, 100%);
        padding: 36px 40px 28px 40px;
    }

    .homepage-hero-text-box h1 {
        font-size: clamp(48px, 6vw, 64px);
    }

    .homepage-text-image-container .text-image-title-wrapper {
        top: 72px;
        padding: 0 24px;
    }

    .homepage-text-image-container h2 {
        font-size: clamp(48px, 7vw, 64px);
        text-align: center;
    }

    .homepage-text-image-container .text-image-title-wrapper span {
        font-size: clamp(24px, 4vw, 32px);
        text-align: center;
    }

    .text-blurred {
        max-width: calc(100% - 48px);
        padding: 24px;
        gap: 24px;
        flex-wrap: wrap;
    }

    .text-blurred .text-box p {
        font-size: 18px;
    }

    .homepage-text-image-container {
        padding-bottom: 200px;
    }

    .text-blurred .text-box {
        flex: 1 1 calc(50% - 12px);
        max-width: none;
    }

    .basic-text-image-banner .basic-text-container {
        width: calc(100% - 48px);
    }

    .homepage-offers-container {
        padding: 88px 24px;
    }

    .homepage-offers-container h2 {
        font-size: 52px;
        margin-bottom: 40px;
    }

    .warranty-cards-container.homepage-warranty-cards-container .warranty-cards-subtitle {
        font-size: 26px;
        margin-bottom: 40px;
        padding: 0 24px;
        text-align: center;
    }

    .model-gallery-two-half-container.homepage-gallery-two-half-container .model-gallery-two-half {
        padding-left: 24px;
    }

    .contact-images-box {
        gap: 24px;
    }

    .contact-images-box img, .contact-images-box iframe {
        width: calc(50% - 12px);
        height: auto;
    }

    .warranty-box-container {
        padding: 56px 24px;
    }

    .warranty-box {
        --warranty-box-gap: 64px;
        gap: var(--warranty-box-gap);
    }

    .warranty-box-text h3 {
        font-size: 40px;
    }

    .warranty-box-text p {
        font-size: 21px;
    }

    .warranty-box-image,
    .warranty-box-image img {
        width: 100%;
        height: auto;
    }

    .warranty-cards-container h3 {
        font-size: 40px;
        margin-bottom: 40px;
        text-align: center;
        padding: 0 24px;
    }

    .warranty-card-wrapper {
        flex-wrap: wrap;
        padding: 0 24px;
        margin-bottom: 88px;
    }

    .warranty-card {
        flex: 1 1 calc(50% - 12px);
        max-width: none;
    }

    .warranty-hero-text-wrapper {
        top: 72px;
        max-width: 900px;
        padding: 0 24px;
    }

    .warranty-hero-container h2 {
        font-size: 52px;
    }

    .warranty-hero-container p {
        font-size: 26px;
        margin-bottom: 88px;
    }

    .warranty-hero-container p::after {
        bottom: -44px;
    }
}

@media (max-width: 900px) {
    .model-hero-card-container h1 {
        font-size: 50px;
    }
    .model-hero-card-container .description {
        font-size: 22px;
    }
    .model-hero-card-container .description::after {
        bottom: -30px;
    }
    .model-hero-cta-container a {
        font-size: 18px;
        padding: 14px 24px;
    }
    .model-version {
        width: 100%;
        min-width: auto;
    }
    .model-versions-row {
        flex-direction: column;
        align-items: stretch;
    }
    .model-engines-card {
        flex: 1 1 100%;
        max-width: 100%;
        width: 100%;
    }
    .model-engines-cards {
        flex-direction: column;
        align-items: stretch;
    }
    .model-engines-data-row, .model-versions-row {
        padding: 0 0 32px 0;
    }
    .documentation-list {
        flex-direction: column;
    }
    .documentation-wrapper {
        width: 100%;
        flex-basis: 100%;
    }
    .warranty-hero-text-wrapper {
        top: 50%;
        transform: translateY(-50%) translateX(-50%);
    }
    .warranty-hero-container p {
        font-size: 21px;
        margin-bottom: 56px;
    }
    .warranty-hero-container p::after {
        bottom: -22px;
    }
}

/* Tablet portrait (768px and below) */
@media (max-width: 768px) {
    .header-wrapper img {
        max-width: 300px;
    }
    .model-hero-card-container {
        padding: 48px 32px;
        gap: 24px;
        position: static;
        transform: translate(0);
        background-color: #000;
        border-radius: 0;
        border: none;
    }

    .model-hero-card-container .subtitle {
        font-size: 18px;
        display: none;
    }

    .model-hero-card-container h1 {
        font-size: 32px;
    }

    .model-hero-cta-container a {
        font-size: 16px;
        padding: 12px 24px;
    }

    .model-hero-cta-container {
        gap: 16px;
        flex-wrap: wrap;
    }

    .model-hero-card-container .description {
        font-size: 24px;
        display: none;
        margin-bottom: 64px;
    }
    


    .model-stats-tabs-container {
        gap: 32px;
        padding-top: 24px;
    }

    .model-stats-tab {
        font-size: 18px;
        padding-bottom: 20px;
    }

    .model-stats-content-container {
        padding-top: 48px;
    }

    .model-stats-box-container {
        flex-wrap: wrap;
        gap: 16px;
        margin-bottom: 16px;
    }
    



    .homepage-models-picker-content {
        min-height: 0;
        padding: 0 0 96px 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .homepage-models-picker-model-box {
        max-width: none;
        padding-top: 16px;
        padding-left: 24px;
        padding-right: 24px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .homepage-models-picker-model-box h2 {
        font-size: clamp(38px, 10vw, 52px);
    }

    .homepage-models-picker-price {
        font-size: 18px;
        margin-bottom: 28px;
    }

    .homepage-models-picker-cta {
        gap: 14px;
        flex-wrap: wrap;
    }

    .homepage-models-picker-visual {
        position: relative;
        left: auto;
        bottom: auto;
        width: 100%;
        transform: none;
        min-height: 340px;
        justify-content: center;
    }

    .homepage-models-picker-visual img {
        width: 100%;
        max-height: 340px;
    }

    .homepage-models-picker-nav {
        top: auto;
        bottom: 112px;
        transform: none;
    }

    .homepage-models-picker-nav.prev {
        left: 24px;
    }

    .homepage-models-picker-nav.next {
        right: 24px;
    }

    .homepage-models-picker-pagination {
        bottom: 28px;
    }

    .homepage-slider {
        min-height: 540px;
    }

    .homepage-slide {
        min-height: 540px;
        align-items: center;
        padding: 0 24px 0 24px;
    }

    .homepage-hero-text-box {
        width: 100%;
        padding: 28px 24px 24px 24px;
        border-radius: 14px;
    }

    .homepage-hero-text-box h1 {
        font-size: clamp(38px, 10vw, 52px);
        margin-bottom: 16px;
    }

    .homepage-hero-text-box span {
        font-size: 16px;
        gap: 18px;
        margin-bottom: 48px;
    }

    .homepage-hero-text-box span::after {
        width: 112px;
    }

    .homepage-hero-text-box a {
        width: 100%;
        min-width: 0;
        min-height: 54px;
        font-size: 18px;
    }

    .homepage-slider-dots {
        bottom: 48px;
    }



    .homepage-text-image-container {
        background-color: #000000;
    }

    .homepage-text-image-container > img {
        object-fit: contain;
    }

    .homepage-text-image-container {
        padding-bottom: 0;
    }

    .homepage-text-image-container .text-image-title-wrapper {
        top: 32px;
        padding: 0 24px;
    }

    .homepage-text-image-container h2 {
        font-size: clamp(36px, 10vw, 48px);
        text-align: center;
    }

    .homepage-text-image-container .text-image-title-wrapper span {
        font-size: 22px;
        text-align: center;
    }

    .text-blurred {
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;
        width: calc(100% - 48px);
        max-width: none;
        margin: -64px auto 0 auto;
        padding: 24px 24px;
        flex-direction: column;
        gap: 20px;
        z-index: 2;
    }

    .text-blurred .text-box {
        flex: 1 1 100%;
        width: 100%;
    }

    .text-blurred .text-box p {
        font-size: 18px;
    }

    .homepage-text-image-cta {
        padding: 40px 16px 56px 16px;
    }

    .homepage-text-image-cta a {
        width: 100%;
        max-width: fit-content;
        min-width: 0;
    }

    .basic-text-image-banner .basic-text-container {
        width: calc(100% - 48px);
    }

    .basic-text-image-banner .basic-text-container h3 {
        font-size: clamp(36px, 10vw, 48px);
    }

    .basic-text-image-banner .basic-text-container span {
        font-size: 22px;
        margin-bottom: 32px;
    }

    .basic-text-image-banner .basic-text-container a {
        width: auto;
        max-width: 360px;
    }

    .homepage-offers-container {
        padding: 56px 16px 64px 16px;
    }

    .homepage-offers-container h2 {
        font-size: 40px;
        margin-bottom: 32px;
    }

    .homepage-offers-slider {
        gap: 16px;
    }

    .homepage-offers-slider .homepage-offer {
        flex: 0 0 calc(100vw - 32px);
        width: calc(100vw - 32px);
        max-width: calc(100vw - 32px);
    }

    .homepage-offer h4 {
        font-size: 26px;
        padding-top: 24px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .homepage-offer p,
    .homepage-offer .date {
        font-size: 18px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .homepage-offer a {
        margin-left: 24px;
        font-size: 18px;
    }

    .homepage-offers-controls {
        margin-top: 28px;
        gap: 16px;
    }

    .homepage-offers-counter {
        font-size: 18px;
    }

    .warranty-cards-container.homepage-warranty-cards-container {
        padding: 56px 24px;
    }

    .warranty-cards-container.homepage-warranty-cards-container h3 {
        font-size: clamp(34px, 9vw, 44px);
        padding: 0;
    }

    .warranty-cards-container.homepage-warranty-cards-container .warranty-cards-subtitle {
        font-size: 22px;
        margin-bottom: 28px;
        padding: 0 8px;
        text-align: center;
    }

    .warranty-cards-container.homepage-warranty-cards-container .warranty-card-wrapper {
        padding: 0;
        gap: 16px;
    }

    .warranty-cards-container.homepage-warranty-cards-container .warranty-card {
        flex: 1 1 100%;
        min-height: auto;
    }

    .model-gallery-two-half-container.homepage-gallery-two-half-container {
        padding: 64px 0 56px 0;
    }

    .model-gallery-two-half-container.homepage-gallery-two-half-container .model-gallery-two-half {
        padding-left: 24px;
    }

    .model-gallery-two-half-container.homepage-gallery-two-half-container .model-gallery-two-half-text-container {
        margin-bottom: 40px;
        padding: 0 16px;
    }

    .model-gallery-two-half-container.homepage-gallery-two-half-container .model-gallery-two-half-images-container {
        gap: 16px;
        padding-right: 24px;
    }

    .model-gallery-two-half-container.homepage-gallery-two-half-container .model-gallery-two-half-image-wrapper {
        flex: 0 0 calc(84vw - 16px);
        min-width: calc(84vw - 16px);
        padding: 24px;
    }

    .legal-notice-container {
        padding: 14px 0 20px 0;
    }

    .legal-notice-container .legal-notice-title {
        font-size: 21px;
        padding: 0 16px;
    }

    .legal-notice-container .legal-notice-content {
        padding: 0 16px;
    }

    .legal-notice-container .legal-notice-content p, .legal-notice-container .legal-notice-content p a {
        font-size: 11px;
        margin-bottom: 12px;
    }

    .model-stats-box {
        flex: 1 1 calc(50% - 8px);
        width: calc(50% - 8px);
        padding: 20px 24px;
    }

    .model-stats-label {
        font-size: 21px;
    }

    .model-stats-value {
        font-size: 40px;
    }

    .model-stats-unit {
        font-size: 18px;
    }

    .model-stats-description-wrapper p {
        font-size: 28px;
    }

    .model-stats-cta-wrapper a {
        font-size: 18px;
        padding: 14px 24px;
    }

    .model-color-container {
        padding: 48px 0 64px 0;    
    }

    .model-engines-container {
        padding: 48px 0 0 0;
    }



    .model-color-container h2 {
        font-size: 52px;
    }

    .model-color-tabs-wrapper {
        gap: 32px;
    }

    .model-color-tab {
        font-size: 18px;
        padding-bottom: 20px;
    }

    .model-color-image-text-container h3 {
        font-size: 40px;
    }

    .model-color-image-text-container span {
        font-size: 18px;
    }

    .model-gallery-one-half-text-container h2,
    .model-gallery-one-text-container h2,
    .model-gallery-two-half-text-container h2 {
        font-size: 52px;
    }

    .model-gallery-one-half-text-container span,
    .model-gallery-one-text-container span,
    .model-gallery-two-half-text-container span {
        font-size: 28px;
    }

    .model-gallery-one-half-image-wrapper h4,
    .model-gallery-one-image-wrapper h4,
    .model-gallery-two-half-image-wrapper h4, .model-gallery-two-half-image-wrapper h4 p {
        font-size: 28px;
    }

    .model-gallery-one-image-wrapper span,
    .model-gallery-two-half-image-wrapper span, .model-gallery-two-half-image-wrapper p {
        font-size: 18px;
    }

    .model-gallery-one-half-carousel-wrapper {
        padding-left: 0;
    }

    .model-gallery-one-half-images-container {
        padding-right: 0;
    }

    .model-gallery-one-half-image-wrapper {
        flex: 0 0 calc(100% - 24px);
        min-width: 0;
    }

    .model-gallery-two-half-carousel-wrapper {
        padding-left: 0;
    }
    
    .model-gallery-five-carousel-wrapper {
        padding-left: 0;
    }
    

    .model-engines-wrapper h2 {
        font-size: 52px;
    }

    .model-engines-cards {
        gap: 16px;
    }

    .model-engines-card h3 {
        font-size: 40px;
    }

    .model-engines-card-specs-row {
        font-size: 18px;
    }

    .model-engines-cta-wrapper a {
        font-size: 18px;
        padding: 14px 24px;
    }

    .model-engines-data-row h4 {
        font-size: 28px;
    }

    .model-engines-data-boxes-wrapper {
        flex-wrap: wrap;
        gap: 16px;
    }


    .model-engines-data-box .model-engines-data-box-label {
        font-size: 21px;
    }

    .model-engines-data-box .model-engines-data-box-value {
        font-size: 40px;
    }

    .model-engines-data-box .model-engines-data-box-unit {
        font-size: 18px;
    }

    .model-version {
        padding: 32px 40px;
    }

    .model-version h4 {
        font-size: 28px;
    }

    .model-version ul li {
        font-size: 18px;
    }

    .model-cards-wrapper h2 {
        font-size: 52px;
    }

    .model-cards-wrapper span {
        font-size: 28px;
    }

    .model-cards-grid {
        flex-direction: column;
    }

    .models-cards-column {
        width: 100%;
        min-width: 100%;
    }

    .model-card-text-box h4 {
        font-size: 28px;
    }

    .model-card-text-box p {
        font-size: 18px;
    }

    .model-contact-form-tabs-container {
        gap: 32px;
    }

    .model-contact-form-tab span {
        font-size: 18px;
    }

    .form-type-container {
        gap: 16px;
        margin-bottom: 40px;
    }

    .form-type {
        width: 180px;
        height: 160px;
        padding: 32px 24px;
    }

    .form-type span:nth-of-type(2) {
        font-size: 21px;
    }

    .contact-form-row,
    .contact-form-row-full {
        max-width: 100%;
        padding: 0 24px;
    }

    .contact-form-legal-container {
        max-width: 100%;
        padding: 32px 24px 0 24px;
    }

    .contact-form-legal-container h4 {
        font-size: 28px;
        margin-bottom: 32px;
    }

    .contact-form-legal-container .checkbox-wrapper label {
        font-size: 18px;
    }

    .footer-logo-wrapper {
        max-width: 320px;
        padding-top: 80px;
        margin-bottom: 32px;
    }

    .social-media-container {
        margin-bottom: 80px;
    }

    .footer-navigation-container {
        max-width: 100%;
        padding: 0 24px;
        gap: 24px;
    }

    .footer-navigation-wrapper {
        flex: 1 1 calc(50% - 12px);
    }

    .footer-navigation-wrapper a {
        font-size: 21px;
    }

    .footer-navigation-submenu a {
        font-size: 14px;
    }

    .footer-copyright-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 24px;
    }

    .footer-copyright-container span {
        width: 100%;
        text-align: center;
    }
    .footer-logo-wrapper img {
        width: 100%;
    }

    .contact-hero-container picture img {
        width: 100%;
        height: auto;
        display: block;
    }

    .contact-hero-text-container {
        width: calc(100% - 48px);
        padding: 20px 24px;
    }

    .contact-hero-text-container h1 {
        font-size: 48px;
        white-space: normal;
    }

    .contact-hero-text-container span {
        font-size: 18px;
        display: none;
    }

    .contact-content-container {
        padding: 72px 24px 48px 24px;
    }

    .contact-text-box {
        padding: 20px 24px;
    }

    .contact-text-box h2 {
        font-size: 28px;
    }

    .contact-text-box p {
        font-size: 21px;
    }

    .contact-images-box {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .contact-images-box img, .contact-images-box iframe {
        width: 100%;
    }

    .contact-info-box {
        padding: 20px 24px;
    }

    .contact-info-box h3 {
        font-size: 21px;
    }

    .contact-info-box p {
        font-size: 18px;
    }

    .warranty-box-container {
        padding: 48px 24px;
        gap: 48px;
    }

    .warranty-box,
    .warranty-box.warranty-box-reverse {
        flex-direction: column;
        gap: 24px;
        padding: 0;
    }

    .warranty-box-text,
    .warranty-box-image {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .warranty-box-text h3 {
        font-size: 36px;
    }

    .warranty-box-text p {
        font-size: 21px;
    }

    .warranty-cards-container {
        padding: 48px 24px;
    }

    .warranty-cards-container h3 {
        font-size: 36px;
        margin-bottom: 32px;
        padding: 0;
    }

    .warranty-card-wrapper {
        gap: 16px;
        padding: 0;
        margin-bottom: 72px;
    }

    .warranty-card {
        flex: 1 1 calc(50% - 8px);
        padding: 20px 24px;
    }

    .warranty-card span {
        font-size: 21px;
    }

    .warranty-cards-cta-container a,
    .warranty-hero-container a {
        font-size: 18px;
        padding: 14px 24px;
    }

    .warranty-hero-text-wrapper {
        max-width: 100%;
        padding: 0 24px;
    }

    .warranty-hero-container h2 {
        font-size: 44px;
    }

    .warranty-hero-container p {
        font-size: 24px;
        margin-bottom: 72px;
    }

    .warranty-hero-container p::after {
        bottom: -36px;
    }

    .documentation-text-box p {
        font-size: 28px;
    }

     .documentation-list {
        gap: 24px;
    }
    .special-offer-models-container, .special-offer-fuel-wrapper {
        gap: 16px;
        flex-wrap: wrap;
    }
    .special-offer-models-wrapper {
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .offer-details-heading-wrapper h2 {
        font-size: 44px;
    }
    .offer-details-heading-wrapper h3 {
        font-size: 28px;
    }

     .offer-details-text-wrapper p {
        font-size: 28px;
    }

     .offer-details-date {
        font-size: 28px;
    }
    .offer-details-container {
        background: linear-gradient(180deg, #fff 0%, #fff 39%, #d1d3d5 40%, #fff 80%);
        padding: 72px 24px 24px 24px;
    }
    .offer-form-return-btn-wrapper {
        padding: 0 24px;
    }
    .offer-details-content-container {
        padding: 0 0 0 0;
    }
    .special-offer-container {
        padding: 48px 24px 48px 24px;
    }
    .news-container {
        padding: 48px 24px 48px 24px;
    }
    .header-wrapper img {
        width: 100%;
    }
    .news-details-container {
        padding: 48px 24px 48px 24px;
    }
    .news-details-content-wrapper h1 {
        font-size: 48px;
    }
     .news-details-content-wrapper .subtitle {
        font-size: 28px;
    }
     .news-details-content-wrapper p {
        font-size: 18px;
    }
     .news-details-content-wrapper ul li {
        font-size: 18px;
    }
     .news-details-content-wrapper ol li {
        font-size: 18px;
    }
        .warranty-hero-text-wrapper {
        padding: 0 24px;
    }

    .warranty-hero-container h2 {
        font-size: 30px;
    }

    .warranty-hero-container p {
        font-size: 18px;
        margin-bottom: 48px;
    }

    .warranty-hero-container p::after {
        width: 100px;
        bottom: -24px;
    }

}

@media (max-width: 580px) {
    .homepage-models-picker-cta {
        flex-direction: column;
        align-items: flex-start;
    }
    .homepage-models-picker-visual {
        top: -80px;
    }
    .homepage-models-picker-content {
        padding-bottom: 24px;
    }
    .homepage-models-picker {
        background: radial-gradient(circle at center 18%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 34%),
        linear-gradient(180deg, #0d0e0e 0%, #141515 72%, #ececec 72%, #f5f5f5 100%);
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {

    .header-container {
        padding: 0 12px;
    }

    .homepage-models-picker-model-box h2 {
        font-size: 34px;
    }

    .homepage-models-picker-price {
        font-size: 16px;
    }

    .homepage-models-picker-cta a {
        min-height: 48px;
        font-size: 16px;
        padding: 12px 18px;
    }
    .homepage-models-picker-nav {
        width: 36px;
        height: 36px;
        bottom: 100px;
    }

    .homepage-models-picker-nav.prev {
        left: 12px;
    }

    .homepage-models-picker-nav.next {
        right: 12px;
    }

    .homepage-models-picker-page {
        width: 34px;
        height: 34px;
        font-size: 18px;
    }

    .homepage-slider {
        min-height: 500px;
    }

    .homepage-slide {
        min-height: 500px;
        padding: 0 24px 0 24px;
    }

    .homepage-hero-text-box {
        padding: 24px 18px 18px 18px;
    }

    .homepage-hero-text-box h1 {
        font-size: 34px;
    }

    .homepage-hero-text-box span {
        font-size: 14px;
        margin-bottom: 48px;
    }

    .homepage-hero-text-box a {
        min-height: 50px;
        font-size: 17px;
        padding: 14px 18px;
    }

    .homepage-slider-dot {
        width: 24px;
    }
    .homepage-text-image-container .text-image-title-wrapper {
        top: 24px;
        padding: 0 12px;
    }

    .homepage-text-image-container h2 {
        font-size: 32px;
    }

    .homepage-text-image-container .text-image-title-wrapper span {
        font-size: 18px;
    }

    .text-blurred {
        width: calc(100% - 48px);
        margin-top: -40px;
        padding: 20px 24px;
        border-radius: 10px;
    }

    .text-blurred .text-box p {
        font-size: 16px;
    }
    
    .basic-text-image-banner .basic-text-container {
        width: calc(100% - 48px);
    }

    .basic-text-image-banner .basic-text-container h3 {
        font-size: 32px;
    }

    .basic-text-image-banner .basic-text-container span {
        font-size: 18px;
        margin-bottom: 24px;
    }

    .basic-text-image-banner .basic-text-container a {
        font-size: 16px;
        padding: 12px 20px;
    }

    .homepage-offers-container {
        padding: 48px 12px 56px 12px;
    }

    .homepage-offers-container h2 {
        font-size: 32px;
    }

    .homepage-offers-slider .homepage-offer {
        flex-basis: calc(100vw - 24px);
        width: calc(100vw - 24px);
        max-width: calc(100vw - 24px);
    }

    .homepage-offer h4 {
        font-size: 22px;
        padding-top: 20px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .homepage-offer p,
    .homepage-offer .date {
        font-size: 16px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .homepage-offer a {
        margin-left: 20px;
        padding: 8px 18px;
        font-size: 16px;
    }

    .homepage-offers-arrow {
        width: 36px;
        height: 36px;
    }

    .warranty-cards-container.homepage-warranty-cards-container {
        padding: 48px 24px;
    }

    .warranty-cards-container.homepage-warranty-cards-container .warranty-cards-subtitle {
        font-size: 18px;
    }



    .model-gallery-two-half-container.homepage-gallery-two-half-container .model-gallery-two-half-images-container {
        padding-right: 24px;
    }

    .model-gallery-two-half-container.homepage-gallery-two-half-container .model-gallery-two-half-image-wrapper {
        flex: 0 0 calc(100vw - 24px);
        min-width: calc(100vw - 24px);
        padding: 20px;
    }

    .model-gallery-one-half-image-wrapper,
    .model-gallery-two-half-image-wrapper,
    .model-gallery-five-image-wrapper {
        flex: 0 0 calc(100vw - 24px);
        min-width: calc(100vw - 24px);
    }
    


    .legal-notice-container .legal-notice-title {
        font-size: 18px;
        gap: 8px;
    }

    .legal-notice-container .legal-notice-symbol {
        min-width: 12px;
    }

    .menu-container nav ul {
        gap: 12px;
        flex-wrap: wrap;
    }

    .menu-container nav ul li a {
        font-size: 14px;
    }

    .header-cta-wrapper a {
        padding: 8px 12px;
        font-size: 12px;
        gap: 6px;
    }

    .header-cta-wrapper a span:first-of-type img {
        width: 16px;
        height: 16px;
    }

    .model-hero-card-container {
        padding: 32px 12px;
        gap: 12px;
    }

    .model-hero-card-container .subtitle {
        font-size: 16px;
    }

    .model-hero-card-container h1 {
        font-size: 36px;
    }

    .model-hero-card-container .description {
        font-size: 20px;
        margin-bottom: 48px;
    }

    .model-hero-card-container .description::after {
        bottom: -24px;
    }

    .model-hero-cta-container a {
        font-size: 16px;
        padding: 12px 20px;
    }

    .model-stats-tabs-container {
        gap: 16px;
        flex-wrap: wrap;
    }

    .model-stats-tab {
        font-size: 16px;
        padding-bottom: 16px;
    }

    .model-stats-box-container {
        flex-direction: column;
        gap: 12px;
    }

    .model-stats-box {
        flex: 1 1 100%;
        width: 100%;
    }

    .model-stats-description-wrapper p {
        font-size: 24px;
        padding: 0 16px;
    }

    .model-color-container h2,
    .model-engines-wrapper h2,
    .model-cards-wrapper h2 {
        font-size: 40px;
    }

    .model-color-tabs-wrapper {
        gap: 16px;
        flex-wrap: wrap;
    }

    .model-color-tab {
        font-size: 16px;
    }

    .model-color-image-text-container h3 {
        font-size: 32px;
    }

    .model-color-image-text-container span {
        font-size: 16px;
    }

    .model-color-picker-container {
        padding: 12px 16px;
        gap: 8px;
    }

    .model-color {
        width: 28px;
        height: 28px;
        border: 5px solid #fff;
    }

    .model-color.active {
        border: 5px solid #d1d3d5;
    }

    .model-gallery-one-half-text-container h2,
    .model-gallery-one-text-container h2,
    .model-gallery-two-half-text-container h2 {
        font-size: 40px;
    }

    .model-engines-wrapper h2 {
        margin-bottom: 32px;
    }

    .model-gallery-one-half-text-container span,
    .model-gallery-one-text-container span,
    .model-gallery-two-half-text-container span {
        font-size: 24px;
    }

    .model-gallery-one-half-image-wrapper h4,
    .model-gallery-one-image-wrapper h4,
    .model-gallery-two-half-image-wrapper h4, .model-gallery-two-half-image-wrapper h4 p {
        font-size: 24px;
    }

    .model-gallery-one-image-wrapper span,
    .model-gallery-two-half-image-wrapper span, .model-gallery-two-half-image-wrapper p {
        font-size: 16px;
    }

    .model-gallery-one-half-carousel-wrapper {
        padding-left: 16px;
    }

    .model-gallery-one-half-images-container {
        padding-right: 0;
        gap: 16px;
    }

    .model-gallery-one-half-image-wrapper {
        flex: 0 0 100%;
        min-width: 0;
    }

    .model-gallery-two-half-carousel-wrapper {
        padding-left: 16px;
    }
    
    .model-gallery-five-carousel-wrapper {
        padding-left: 16px;
    }
    
    .model-gallery-five-images-container {
        gap: 16px;
    }
    .gallery-arrow {
        width: 44px;
        height: 44px;
    }

    .gallery-arrow svg {
        width: 12px;
        height: 12px;
    }

    .model-engines-card h3 {
        font-size: 32px;
    }

    .model-engines-card-specs-row {
        font-size: 16px;
        padding: 6px 4px;
    }

    .model-engines-data-row h4 {
        font-size: 24px;
    }

    .model-engines-data-boxes-wrapper {
        flex-direction: column;
    }

    .model-cards-container {
        padding: 48px 0 48px 0;
    }

    .model-version {
        padding: 24px 32px;
    }

    .model-version h4 {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .model-version ul li {
        font-size: 16px;
    }

    .model-cards-wrapper h2 {
        font-size: 36px;
    }

    .model-cards-wrapper span {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .model-card-text-box {
        padding: 24px;
    }

    .model-card-text-box h4 {
        font-size: 24px;
    }

    .model-card-text-box p {
        font-size: 16px;
    }

    .model-contact-form-tabs-container {
        gap: 16px;
        flex-wrap: wrap;
        padding-bottom: 20px;
    }

    .model-contact-form-tab span {
        font-size: 16px;
        padding-bottom: 16px;
    }

    .form-type-container {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
        padding: 0 24px;
    }

    .form-type {
        width: 100%;
        height: auto;
        padding: 24px;
    }

    .contact-form-row {
        flex-direction: column;
        gap: 16px;
    }

    .contact-form-legal-container h4 {
        font-size: 24px;
    }

    .contact-form-legal-container .checkbox-wrapper {
        gap: 16px;
    }

    .contact-form-legal-container .checkbox-wrapper input {
        width: 20px;
        height: 20px;
        min-width: 20px;
        min-height: 20px;
    }

    .contact-form-legal-container .checkbox-wrapper label {
        font-size: 16px;
    }

    .contact-form-send-button-wrapper button {
        font-size: 18px;
        padding: 14px 32px;
    }

    .footer-logo-wrapper {
        max-width: 280px;
        padding-top: 60px;
    }

    .footer-navigation-container {
        padding: 0 16px;
        flex-direction: column;
    }

    .footer-info-wrapper {
        padding: 8px 16px;
    }

    .footer-notice-wrapper {
        padding: 16px;
    }

    .footer-navigation-wrapper {
        flex: 1 1 100%;
        width: 100%;
    }

    .footer-navigation-wrapper a {
        font-size: 18px;
    }

    .footer-notice-wrapper p {
        font-size: 11px;
    }

    .footer-copyright-container {
        font-size: 14px;
        padding: 24px 16px;
    }

    .footer-info-wrapper p {
        font-size: 11px;
    }

    .contact-hero-text-container {
        width: calc(100% - 48px);
        padding: 16px;
    }

    .contact-hero-text-container h1 {
        font-size: 32px;
    }

    .contact-hero-text-container span {
        font-size: 14px;
    }

    .contact-content-container {
        padding: 48px 24px 32px 24px;
    }

    .contact-text-box {
        padding: 16px;
        margin-bottom: 16px;
    }

    .contact-text-box h2 {
        font-size: 24px;
    }

    .contact-text-box p {
        font-size: 18px;
    }

    .contact-info-box {
        padding: 16px;
    }

    .contact-info-box h3 {
        font-size: 18px;
    }

    .contact-info-box p {
        font-size: 16px;
    }

    .warranty-box-container {
        padding: 32px 24px;
    }

    .warranty-box {
        gap: 16px;
    }

    .warranty-box-text h3 {
        font-size: 28px;
    }

    .warranty-box-text p {
        font-size: 16px;
    }

    .warranty-cards-container {
        padding: 32px 24px;
    }

    .warranty-cards-container h3 {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .warranty-card-wrapper {
        margin-bottom: 56px;
    }

    .warranty-card {
        flex: 1 1 100%;
        padding: 16px;
        min-height: auto;
    }
    
    .documentation-box-cta-container a {
        width: 100%;
    }

    .warranty-card img {
        width: 56px;
        height: 56px;
    }

    .warranty-card span {
        font-size: 18px;
    }

    .warranty-cards-cta-container a,
    .warranty-hero-container a {
        font-size: 16px;
        padding: 12px 20px;
        text-align: center;
    }

    .offer-details-container {
        background: linear-gradient(180deg, #fff 0%, #fff 34%, #d1d3d5 35%, #fff 80%);
    }
    .model-color-container h2 {
        font-size: 38px;
        padding: 0 12px;
    }
    .offer-details-container {
        background: linear-gradient(180deg, #fff 0%, #fff 36%, #d1d3d5 37%, #fff 80%);
    }

    .model-gallery-two-half-image-wrapper {
        flex: 0 0 100%;
        min-width: 100%;
        padding: 24px;
    }
        .model-gallery-five-image-wrapper {
        flex: 0 0 calc(100% - 24px);
        min-width: calc(100% - 24px);
        padding: 24px;
    }
    .model-gallery-two-half-carousel-wrapper {
        padding-left: 0;
    }
    .model-gallery-five-carousel-wrapper {
        padding-left: 0;
    }
    .model-gallery-two-half-images-container {
        gap: 24px;
    }
    .model-gallery-five-images-container {
        gap: 24px;
    }
    .model-gallery-one-half-carousel-wrapper {
        padding-left: 0;
    }
    .model-gallery-one-half-image-wrapper {
        flex: 0 0 calc(100% - 24px);
        min-width: calc(100% - 24px);
    }
    .model-gallery-one-half-images-container {
        padding-right: 0;
        gap: 24px;
    }
    .model-engines-data-box {
        min-width: auto;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .model-gallery-two-half-container.homepage-gallery-two-half-container .model-gallery-two-half {
        padding-left: 24px;
        padding-right: 0;
    }

    
     .model-gallery-five-controls {
        padding-left: 24px;
    }

    .model-gallery-two-half-container.homepage-gallery-two-half-container .model-gallery-two-half-carousel-wrapper {
        padding-right: 24px;
        width: calc(100% + 48px);
    }

    .model-gallery-two-half-container.homepage-gallery-two-half-container .model-gallery-two-half-images-container {
        padding-right: 24px;
        padding-left: 24px;
    }

    .model-gallery-two-half-container.homepage-gallery-two-half-container .model-gallery-two-half-image-wrapper {
        flex: 0 0 calc((100vw - 48px) * 0.75);
        min-width: calc((100vw - 48px) * 0.75);
        padding: 20px;
    }
}

/* DEFAULT = 3 u redu */
.model-engines-data-box {
    flex: 1 1 calc((100% - 72px) / 4);
    max-width: calc((100% - 72px) / 4);

    padding: 24px 32px;
    border-radius: 6px;
    background-color: #ffffff;
    border: 1px solid #d1d3d5;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1608px) {
    .model-engines-data-box {
        flex: 1 1 calc((100% - 48px) / 3);
        max-width: calc((100% - 48px) / 3);
    }
}

/* ISPOD 1212px = 2 u redu */
@media (max-width: 1212px) {
    .model-engines-data-box {
        flex: 1 1 calc((100% - 24px) / 2);
        max-width: calc((100% - 24px) / 2);
    }
}

/* ISPOD 821px = 1 u redu */
@media (max-width: 821px) {
    .model-engines-data-boxes-wrapper {
        flex-direction: column;
    }

    .model-engines-data-box {
        flex: 1 1 100%;
        max-width: 100%;
        width: 100%;
    }
}



@media screen and (max-width: 1920px) {
    .model-gallery-two-half-container.homepage-gallery-two-half-container .model-gallery-two-half-image-wrapper {
        flex: 0 0 calc((100% - 24px) / 2.3);
        min-width: calc((100% - 24px) / 2.3);
    }
}

@media screen and (max-width: 1200px) {
    .model-gallery-two-half-container.homepage-gallery-two-half-container .model-gallery-two-half-image-wrapper {
        flex: 0 0 calc((100% - 24px) / 1.5);
        min-width: calc((100% - 24px) / 1.5);
    }
}

@media screen and (max-width: 700px) {
    .model-gallery-two-half-container.homepage-gallery-two-half-container .model-gallery-two-half-image-wrapper {
        flex: 0 0 100%;
        min-width: 100%;
        width: 100%;
    }

    .model-gallery-two-half-container.homepage-gallery-two-half-container .model-gallery-two-half-images-container {
        padding-left: 0;
        padding-right: 0;
        width: calc(100% - 48px);
        margin-left: 0;
        gap: 24px;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
        .model-gallery-two-half-container.homepage-gallery-two-half-container .model-gallery-two-half-images-container {
        width: 100%;
        padding-right: 24px;
    }
}

.about-us-text-image-container {
    width: 100%;
    max-width: calc(1560px + 48px);
    margin: 0 auto;
    padding: 72px 24px 48px 24px;
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
}

.about-us-text-image-container .about-us-text {
    flex: 1 1 520px;
    min-width: 0;
    max-width: 635px;
}

.about-us-text-image-container .about-us-text h3 {
    font-size: 47px;
    line-height: 120%;
    margin-bottom: 24px;
    color: rgb(0, 0, 0);
}

.about-us-text-image-container .about-us-text p {
    font-size: 25px;
    line-height: 140%;
    color: rgba(0, 0, 0, 0.75);
    margin-bottom: 24px;
}

.about-us-text-image-container .about-us-image {
    flex: 0 1 900px;
    max-width: 900px;
}

.about-us-text-image-container .about-us-image img {
    display: block;
    width: 100%;
    height: auto;
}

.about-us-blue-text-wrapper {
    max-width: calc(1560px + 48px);
    margin: 0 auto;
    padding: 0 24px;
}

.about-us-blue-text-container {
    background-color: #67b0c4;
    padding: 64px 56px;
    display: flex;
    border-radius: 6px;
    justify-content: center;
    align-items: center;
    max-width: 1560px;
    margin: 0 auto 64px auto;
}

.about-us-blue-text-container p {
    font-size: 32px;
    line-height: 140%;
    color: #fff;
}

.about-us-cards-container {
    max-width: calc(1560px + 48px);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    margin-bottom: 72px;
    gap: 24px;
    justify-content: center;
    align-items: stretch;
}

.about-us-cards-container .about-us-card {
    flex: 1 1 300px;
    max-width: 768px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    border-radius: 12px;
    background-color: #fff;
    border: 1px solid #d1d3d5;
}

.about-us-cards-container .about-us-card img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.about-us-cards-container .about-us-card p {
    font-size: 21px;
    line-height: 140%;
    color: rgb(0, 0, 0);
}

.about-us-list-container {
    margin: 0 auto;
    padding: 72px 24px 72px 24px;
    display: flex;
    flex-direction: column;
    max-width: 2560px;
    gap: 0;
    background: radial-gradient(circle at center, #2c2d2d 0%, #0d0e0e 100%);
}

.about-us-list-container h2 {
    font-size: 66px;
    line-height: 120%;
    margin-bottom: 8px;
    color: #fff;
    text-align: center;
}

.about-us-list-container .about-us-list-subtitle {
    font-size: 32px;
    line-height: 140%;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
    margin-bottom: 72px;
}

.about-us-list ul {
    list-style: none;
    max-width: 1560px;
    margin: 0 auto 72px auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.about-us-list ul li {
    font-size: 25px;
    line-height: 140%;
    padding: 16px 24px;
    color: rgba(255, 255, 255, 0.5);
    flex: 1;
    min-width: 300px;
}

.about-us-list ul li:last-child {
    border-bottom: none;
}

.about-us-list ul li strong, .about-us-list ul li b {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 8px;
    display: block;
    text-transform: uppercase;
}

.about-us-list-container img {
    width: 100%;
    height: auto;
    margin: 0 auto;
    max-width: 1560px;
}

@media screen and (max-width: 1200px) {
    .about-us-text-image-container {
        flex-direction: column;
        padding: 48px 24px;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .about-us-text-image-container .about-us-text, .about-us-text-image-container .about-us-image {
        max-width: none;
        flex: 0;
    }

    .about-us-cards-container {
        flex-direction: column;
        align-items: stretch;
    }

    .about-us-cards-container .about-us-card {
        max-width: none;
    }
}

@media screen and (max-width: 768px) {
    .about-us-text-image-container .about-us-text p {
        font-size: 21px;
    }
    .about-us-blue-text-container p {
        font-size: 24px;
    }
    .about-us-list-container h2 {
        font-size: 42px;
    }
    .about-us-list-container .about-us-list-subtitle {
        font-size: 24px;
    }
    .about-us-list ul li {
        font-size: 18px;
    }
    .about-us-blue-text-container {
        padding: 32px 32px;
    }
}


/* MAP */


.map-container {
    display: flex;
    height: 100vh;
    position: relative;
    width: 100%;
    margin: 0;
    max-width: none;
    padding-top: 0;
}

#screen-3 .model-picker-cta-wrapper {
    border-top: none;
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
}

#screen-3 {
    max-height: calc(100vh - 98px);
}

/* Dealer List Container */
.dealers-list-container {
    width: 418px;
    height: 506px;
    box-sizing: border-box;
    position: absolute;
    top: 10%; /* Keeps the dealer list visible without covering the map */
    left: 180px; /* Adjusted to prevent overlap with the map */
    background-color: #fff; /* White background for the list */
    z-index: 2;
    border-radius: 12px; /* Rounded corners for a cleaner look */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); /* Soft shadow for the list */
    overflow-x: hidden;
}

.dealers-search-container {
    background-color: #f5f5f5;
    padding-top: 48px;
    padding: 32px 24px 8px 24px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.search-input-wrapper {
    position: relative;
    width: 100%;
}

.search-icon {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    pointer-events: none;
}

#search-input {
    border: 1px solid #d1d3d5;
    background: #fff;
    border-radius: 6px;
    width: 100%;
    padding: 8px 16px 8px 44px;
    font-size: 18px;
    color: #000;
    box-sizing: border-box;
}

#search-input::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.dealer-form-container {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    display: block;
    padding: 24px;
    overflow-y: scroll;
    height: 100%;
    transition: left 0.3s ease;
}

.dealer-map .dealers-search-container {
    position: absolute;
    top: 0;
    left: 0;
    transition: left 0.3s ease;
    width: 100%;
}

.dealer-map .dealer-list-wrapper {
    position: absolute;
    top: 148px;
    left: 0;
    transition: left 0.3s ease;
}

.back-to-results {
    font-size: 16px;
    line-height: 140%;
    font-weight: 700;
    color: #0D0E0E;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
    cursor: pointer;
}

.back-to-results:hover {
    color: #67B0C4;
}

.back-to-results:hover .left-icon {
    transform: translateX(-4px);
}

.left-icon {
    display: flex;
    transition: transform 0.3s ease;
    align-items: flex-end;
}

.dealer-form-container h4 {
    font-size: 20px;
    line-height: 120%;
    margin-bottom: 16px;
}

.dealer-form-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 32px;
    font-size: 20px;
    line-height: 120%;
    font-weight: 500;
}


.dealer-form-info-sub {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 16px;
}

.dealer-form-working-hours {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 20px;
}

.dealer-form-working-hours-title {
    font-weight: 700;
}

.dealer-form-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 16px;
    width: 100%;
    padding: 0;
}

.dealer-form-row select {
    width: 100%;
    height: auto;
    padding: 12px 6px;
    border: 1px solid #ccc;
    cursor: pointer;
    transition: border 0.3s ease, box-shadow 0.3s ease;
    border-radius: 6px;
}

.dealer-form-row input {
    width: 100%;
    padding: 12px 6px;
    border: 1px solid #ccc;
    cursor: pointer;
    border-radius: 6px;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

.dealer-form-row input::placeholder {
    color: #000;
    opacity: 0.5;
}

.dealer-form-row input:focus, .dealer-form-row input:hover, .dealer-form-row input:active {
    border: 1px solid #67B0C4;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
}

.dealer-form-row select:focus, .dealer-form-row select:hover, .dealer-form-row select:active {
    border: 1px solid #67B0C4;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
}


/* Map styles */
#map {
    width: 100%; /* Adjusted to take remaining space after the list */
    height: 93.5%;
    box-sizing: border-box;
}

/* Current Location button styling */
.current-location-container {
    padding: 12px;
    background-color: transparent;
    color: #0d0e0e;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin: 10px 0;
    transition: background-color 0.3s ease;
}

.current-location-container:hover {
    text-decoration: underline;
}

.dealer-contact-cta {
    border: 2px solid #67b0c4;
    padding: 8px 24px;
    border-radius: 6px;
    font-size: 18px;
    color: #1a2c31;
    text-decoration: none;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    margin-top: 20px;
    display: block;
}

.current-location-container span {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .map-container {
        flex-direction: column;
    }
    
    .vehicle-documentation-banner-container h1 {
        font-size: 52px;
    }
    
    .vehicle-documentation-banner-container h2 {
        font-size: 28px;
    }

    .dealers-list-container {
        position: relative; /* Change to relative for small screens */
        top: auto; /* Reset top position */
        left: auto; /* Reset left position */
        width: 90%;
        margin-top: 16px;
        max-height: 50vh;
        overflow: hidden;
    }



    #screen-3 {
        height: auto;
        max-height: none;
    }
    #screen-3 .model-picker-cta-wrapper {
        position: static;
        padding-top: 64px;
        transform: translateX(0);
    }
    .city-dropdown {
        width: calc(100% - 48px);
    }

    .map-container {
        padding-bottom: 0;
    }
}

@media screen and (max-width: 450px) {
    .dealer-info-container {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
    }
    #dealer-list-container {
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding-bottom: 32px;
    }
    .dealer-contact-cta {
        margin-top: 6px;
        display: block;
    }
    .current-location-container {
        display: none;
    }
    .dealers-search-container {
        padding-bottom: 32px;
    }
    .contact-section-successfull a {
        font-size: 18px;
        padding: 12px 24px;
    }
    .contact-section-successfull h2 {
        font-size: 32px;
    }
    .contact-section-successfull p {
        font-size: 18px;
    }
    .contact-section-successfull-container {
        padding: 0 24px;
    }
}


.city-dropdown-item:last-child {
    border-bottom: none;
}

.city-dropdown-item:hover {
    background: #f8f9fa;
}

.city-main-text {
    font-weight: 500;
    color: #0D0E0E;
    font-size: 16px;
    margin-bottom: 2px;
}

.city-secondary-text {
    font-size: 14px;
    color: rgba(13, 14, 14, 0.6);
}

.city-dropdown div:hover {
    background: #f8f9fa;
}


.dealer-list-wrapper {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    transition: all 0.3s ease;
}

.loading-dealers {
    padding: 40px 20px;
    text-align: center;
    color: #6c757d;
}

.dealer-item {
    border-bottom: 1px solid #e9ecef;
    cursor: pointer;
    transition: background 0.2s;
}

.dealer-item:hover {
    background: #f8f9fa;
}

.dealer-map-card {
    display: flex;
    padding: 16px;
    gap: 12px;
}

.dealer-marker-icon {
    width: 24px;
    height: 24px;
}

.dealer-wrapper {
    flex: 1;
}

.dealer-title {
    font-size: 21px;
    line-height: 140%;
    font-weight: 700;
    color: #0d0e0e;
    cursor: pointer;
    display: block;
    margin-bottom: 4px;
}

.dealer-info-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.dealer-info-container span {
    display: inline-block;
    margin-bottom: 6px;
}

.dealer-contact-cta:hover {
    background: #5a9bb0;
    text-decoration: none;
    color: white;
}

.distance-wrapper {
    color: #67b0c4;
    font-weight: 500;
}

/* Form Styles */
.dealer-form-container,
.dealer-info-wrapper {
    position: absolute;
    top: 0;
    left: 100%;
    right: 0;
    bottom: 0;
    background: white;
    padding: 20px;
    overflow-y: auto;
    transition: all 0.3s ease;
    opacity: 0;
}

.back-to-results {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #67b0c4;
    cursor: pointer;
    margin-bottom: 20px;
    font-size: 14px;
}

.back-to-results:hover {
    color: #5a9bb0;
}

.dealer-form-container h4,
.dealer-info-wrapper h4 {
    margin: 0 0 16px 0;
    color: #333;
}

.dealer-form-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    color: #67b0c4;
    font-weight: 500;
}

.dealer-form-row {
    margin-bottom: 24px;
    position: relative;
}

.dealer-form-row label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #0D0E0E;
    font-size: 16px;
    line-height: 140%;
}

.dealer-form-row input,
.dealer-form-row select,
.dealer-form-row textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #D1D3D5;
    border-radius: 6px;
    font-size: 16px;
    line-height: 140%;
    transition: border-color 0.3s, box-shadow 0.3s;
    background-color: #fff;
    color: #0D0E0E;
}

.dealer-form-row input::placeholder,
.dealer-form-row textarea::placeholder {
    color: rgba(13, 14, 14, 0.5);
}

.dealer-form-row input:focus,
.dealer-form-row select:focus,
.dealer-form-row textarea:focus {
    outline: none;
    border-color: #67b0c4;
    box-shadow: 0 0 0 3px rgba(103, 176, 196, 0.1);
}

.dealer-form-row select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    background-image: url('data:image/svg+xml;charset=UTF-8,%3Csvg width="12" height="18" viewBox="0 0 12 18" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M12.0092 6L6.01839 0L0.0275879 6H12.0092ZM12.0092 12L6.01839 18L0.0275879 12H12.0092Z" fill="%2367B0C4"/%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px 18px;
    padding-right: 40px;
}

.dealer-form-row textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.checkbox-group {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.checkbox-group input[type="checkbox"]:checked::after {
    opacity: 1;
}

.checkbox-group label {
    font-size: 16px;
    line-height: 140%;
    color: #0D0E0E;
    cursor: pointer;
    margin-bottom: 0;
}

.checkbox-group label a {
    color: #67b0c4;
    text-decoration: none;
}

.checkbox-group label a:hover {
    text-decoration: underline;
}

.dealer-form-submit,
.dealer-contact-btn {
    width: 100%;
    background-color: #67b0c4;
    color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
    line-height: 140%;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 16px;
}

.dealer-form-submit:hover,
.dealer-contact-btn:hover {
    background-color: #5a9bb0;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(103, 176, 196, 0.3);
}

.dealer-form-submit:active,
.dealer-contact-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(103, 176, 196, 0.3);
}

.dealer-form-submit:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.dealer-form-submit:disabled:hover {
    background-color: #ccc;
}

/* Dealer Info Styles */
.dealer-form-info-sub {
    margin-bottom: 24px;
}

.dealer-contact-item {
    margin-bottom: 4px;
    font-size: 16px;
    line-height: 140%;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.dealer-contact-item strong {
    min-width: 80px;
    color: #0D0E0E;
    font-weight: 600;
}

.dealer-contact-item a {
    color: #67b0c4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.dealer-contact-item a:hover {
    color: #5a9bb0;
    text-decoration: underline;
}

.dealer-contact-item span {
    color: rgba(13, 14, 14, 0.75);
}

.dealer-form-working-hours {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    border: 1px solid #e9ecef;
}

.dealer-form-working-hours-title {
    font-weight: 600;
    color: #0D0E0E;
    display: block;
    margin-bottom: 0px;
    font-size: 18px;
}

.dealer-form-working-hours p {
    margin: 0;
    color: rgba(13, 14, 14, 0.75);
    line-height: 1.6;
    white-space: pre-line;
}

/* Back to results styling */
.back-to-results {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #67b0c4;
    cursor: pointer;
    margin-bottom: 24px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.back-to-results:hover {
    color: #5a9bb0;
}

.back-to-results:hover .left-icon {
    transform: translateX(-2px);
}

.left-icon {
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
}

/* Form info header */
.dealer-form-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    padding: 16px;
    background: linear-gradient(135deg, #67b0c4 0%, #5a9bb0 100%);
    color: white;
    font-weight: 600;
    border-radius: 12px;
    font-size: 18px;
}

.dealer-form-info svg {
    flex-shrink: 0;
}

/* Headers */
.dealer-form-container h4,
.dealer-info-wrapper h4 {
    margin: 0 0 24px 0;
    color: #0D0E0E;
    font-size: 20px;
    line-height: 1.8rem;
    font-weight: 600;
}

/* Actions */
.dealer-actions {
    margin-top: 20px;
}

/* Map */
#map {
    flex: 1;
    height: 100%;
}

/* Success Message */
.success-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    text-align: center;
    z-index: 2000;
    max-width: 400px;
    width: 90%;
}

.success-message h3 {
    color: #67b0c4;
    margin-bottom: 16px;
}

.success-message p {
    line-height: 1.3em;
}

.success-close-btn {
    background: #67b0c4;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 16px;
}

/* Validation Styles */
.dealer-form-row.invalid input,
.dealer-form-row.invalid select,
.dealer-form-row.invalid textarea {
    border-color: #dc3545;
    background: #fff5f5;
}

.dealer-form-row.error-message {
    color: #dc3545;
    font-size: 12px;
    margin-top: 4px;
}

/* Mobile Dealer Info Panel */
.mobile-dealer-info {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    max-height: 70vh;
    transition: bottom 0.3s ease;
    display: none;
}

.mobile-dealer-info.show {
    bottom: 0;
    display: block;
}

.mobile-dealer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px 16px 20px;
    border-bottom: 1px solid #e9ecef;
}

.mobile-dealer-header h4 {
    margin: 0;
    color: #0D0E0E;
    font-size: 18px;
    font-weight: 600;
}

.mobile-close-btn {
    background: none;
    border: none;
    color: #67b0c4;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background 0.2s;
}

.mobile-close-btn:hover {
    background: #f8f9fa;
}

.mobile-dealer-content {
    padding: 20px;
    overflow-y: auto;
    max-height: calc(70vh - 80px);
}

.mobile-dealer-name-location {
    background: linear-gradient(135deg, #67b0c4 0%, #5a9bb0 100%);
    color: white;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 16px;
}

.mobile-dealer-details {
    margin-bottom: 20px;
}

.mobile-contact-item {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 140%;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.mobile-contact-item strong {
    min-width: 80px;
    color: #0D0E0E;
    font-weight: 600;
}

.mobile-contact-item a {
    color: #67b0c4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-contact-item a:hover {
    color: #5a9bb0;
    text-decoration: underline;
}

.mobile-contact-item span {
    color: rgba(13, 14, 14, 0.75);
}

.mobile-working-hours {
    background: #f8f9fa;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
}

.mobile-working-hours-title {
    font-weight: 600;
    color: #0D0E0E;
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
}

.mobile-working-hours p {
    margin: 0;
    color: rgba(13, 14, 14, 0.75);
    line-height: 1.6;
    font-size: 14px;
}

.mobile-contact-btn {
    width: 100%;
    background-color: #67b0c4;
    color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
    line-height: 140%;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.mobile-contact-btn:hover {
    background-color: #5a9bb0;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(103, 176, 196, 0.3);
}

/* Mobile Contact Form Panel */
.mobile-contact-form {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 1100;
    display: none;
    flex-direction: column;
}

.mobile-contact-form.show {
    display: flex;
}

.mobile-form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
    background: white;
    position: sticky;
    top: 0;
    z-index: 10;
}

.mobile-form-header h4 {
    margin: 0;
    color: #0D0E0E;
    font-size: 18px;
    font-weight: 600;
    transform: translateX(-10px);
}

.mobile-back-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: #67b0c4;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    padding: 8px;
    border-radius: 6px;
    transition: background 0.2s;
}

.mobile-back-btn:hover {
    background: #f8f9fa;
}

.mobile-form-content {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.mobile-dealer-form-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding: 16px;
    background: linear-gradient(135deg, #67b0c4 0%, #5a9bb0 100%);
    color: white;
    font-weight: 600;
    border-radius: 12px;
    font-size: 16px;
}

.mobile-dealer-form-info svg {
    flex-shrink: 0;
}

.mobile-form-row {
    margin-bottom: 20px;
}

.mobile-form-row label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #0D0E0E;
    font-size: 16px;
    line-height: 140%;
}

.mobile-form-row input,
.mobile-form-row select,
.mobile-form-row textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #D1D3D5;
    border-radius: 6px;
    font-size: 16px;
    line-height: 140%;
    transition: border-color 0.3s, box-shadow 0.3s;
    background-color: #fff;
    color: #0D0E0E;
    box-sizing: border-box;
}

.mobile-form-row input::placeholder,
.mobile-form-row textarea::placeholder {
    color: rgba(13, 14, 14, 0.5);
}

.mobile-form-row input:focus,
.mobile-form-row select:focus,
.mobile-form-row textarea:focus {
    outline: none;
    border-color: #67b0c4;
    box-shadow: 0 0 0 3px rgba(103, 176, 196, 0.1);
}

.mobile-form-row select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    background-image: url('data:image/svg+xml;charset=UTF-8,%3Csvg width="12" height="18" viewBox="0 0 12 18" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M12.0092 6L6.01839 0L0.0275879 6H12.0092ZM12.0092 12L6.01839 18L0.0275879 12H12.0092Z" fill="%2367B0C4"/%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px 18px;
    padding-right: 40px;
}

.mobile-form-row textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.mobile-checkbox-group {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.mobile-checkbox-group input[type="checkbox"], .checkbox-group input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    min-width: 20px;
    height: 20px;
    min-height: 20px;
    border: 1px solid #67b0c4;
    border-radius: 6px;
    background-color: #fff;
    cursor: pointer;
    position: relative;
    margin: 0;
    margin-top: 2px;
}

.mobile-checkbox-group input[type="checkbox"]::after, .checkbox-group input[type="checkbox"]::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="none"><path d="M12 2.86608C12 3.09696 11.9277 3.29321 11.7832 3.45482L6.17806 9.72322L5.12516 10.9007C4.98065 11.0623 4.80516 11.1431 4.59871 11.1431C4.39226 11.1431 4.21677 11.0623 4.07226 10.9007L3.01935 9.72322L0.216774 6.58902C0.0722581 6.42741 0 6.23116 0 6.00028C0 5.7694 0.0722581 5.57315 0.216774 5.41153L1.26968 4.23405C1.41419 4.07243 1.58968 3.99162 1.79613 3.99162C2.00258 3.99162 2.17806 4.07243 2.32258 4.23405L4.59871 6.78816L9.67742 1.09985C9.82194 0.93823 9.99742 0.857422 10.2039 0.857422C10.4103 0.857422 10.5858 0.93823 10.7303 1.09985L11.7832 2.27734C11.9277 2.43895 12 2.6352 12 2.86608Z" fill="%2367b0c4"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.mobile-checkbox-group input[type="checkbox"]:checked::after, .checkbox-group input[type="checkbox"]:checked::after {
    opacity: 1;
}

.mobile-checkbox-group label {
    font-size: 16px;
    line-height: 140%;
    color: #0D0E0E;
    cursor: pointer;
    margin-bottom: 0;
}

.mobile-checkbox-group label a {
    color: #67b0c4;
    text-decoration: none;
}

.mobile-checkbox-group label a:hover {
    text-decoration: underline;
}

.mobile-form-submit {
    width: 100%;
    background-color: #67b0c4;
    color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
    line-height: 140%;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: 16px;
}

.mobile-form-submit:hover {
    background-color: #5a9bb0;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(103, 176, 196, 0.3);
}

.mobile-form-submit:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Responsive */
@media (max-width: 768px) {
    .map-container {
        flex-direction: column;
    }
    
    .dealers-list-container {
        display: none;
    }
    
    .mobile-dealer-info {
        display: block;
    }
    .about-us-cards-container .about-us-card {
        padding: 16px;
    }
}

@media (min-width: 769px) {
    .mobile-dealer-info,
    .mobile-contact-form {
        display: none !important;
    }
}

.grecaptcha-badge {
    display: none !important;
}

.generic-title-wrapper {
    margin-bottom: 64px;
    padding: 120px 32px 32px 32px;
    text-align: center;
}

.generic-title-wrapper h1 {
    font-size: 80px;
    line-height: 120%;
    color: #0d0e0e;
    text-transform: uppercase;
}

.generic-title-wrapper span {
    font-size: 21px;
    line-height: 140%;
    color: rgba(0, 0, 0, 0.75);
    text-transform: uppercase;
}

.generic-text-container {
    padding: 32px;
    border-radius: 12px;
    background-color: #fff;
    border: 1px solid #d1d3d5;
    font-size: 21px;
    line-height: 140%;
    color: #0d0e0e;
    width: calc(100% - 48px);
    max-width: 1560px;
    margin: 0 auto;
}

.generic-text-container p {
        font-size: 21px;
    line-height: 140%;
    color: #0d0e0e;
    margin-bottom: 16px;
}

.generic-text-container a {
    color: #67B0C4;
}

.generic-text-container a:hover {
    text-decoration: none;
}

.generic-text-container ul {
    list-style: none;
    padding-left: 24px;
}

.generic-text-container ul li {
    position: relative;
    padding-left: 20px;
    font-size: 21px;
    line-height: 140%;
    color: #0d0e0e;
    margin-bottom: 8px;
}

.generic-text-container ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45em;

    width: 10px;
    height: 10px;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Crect width='10' height='10' rx='2' fill='%2367B0C4'/%3E%3C/svg%3E");

    background-size: contain;
    background-repeat: no-repeat;
}

.generic-text-container ol {
    padding-left: 42px;
}

.generic-text-container ol li {
        font-size: 21px;
    line-height: 140%;
    color: #0d0e0e;
    margin-bottom: 8px;
}



.generic-text-container h4 {
        font-size: 32px;
    line-height: 140%;
    margin-bottom: 16px;
    padding-top: 32px;
    color: #0d0e0e;
}

.generic-text-container h5 {
    font-size: 28px;
    line-height: 140%;
    margin-bottom: 16px;
    padding-top: 24px;
    color: #0d0e0e;
}

.generic-text-container h6 {
        font-size: 25px;
    line-height: 140%;
    margin-bottom: 16px;
    padding-top: 21px;
    color: #0d0e0e;
}

.generic-table-container {
    width: calc(100% - 48px);
    max-width: 1560px;
    padding-top: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0 auto;
    padding-bottom: 48px;
}

.generic-table-container h3 {
    font-size: 47px;
    line-height: 120%;
    color: #0d0e0e;
    margin-bottom: 56px;
    text-align: center;
}

.generic-table-container table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden;
    width: max-content;   /* allows natural expansion */
    min-width: 100%;      /* still fills container if small */
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
}

.generic-table-container th,
.generic-table-container td {
    width: 240px;
    max-width: 240px;
}

/* RESET ALL BORDERS */
.generic-table-container table th,
.generic-table-container table td {
    padding: 16px 24px;
    text-align: left;
    border: none;
}

.generic-table-container table th:not(:last-child) {
    border-right: 1px solid #fff;
}

/* INNER VERTICAL + HORIZONTAL LINES */
.generic-table-container table td:not(:last-child) {
    border-right: 1px solid #d1d3d5;
}

.generic-table-container table thead th {
    border-bottom: 1px solid #ffffff;
}

/* BODY ROW SEPARATORS */
.generic-table-container table tbody tr:not(:last-child) td {
    border-bottom: 1px solid #d1d3d5;
}

/* HEADER STYLING */
.generic-table-container table thead th, .generic-table-container table thead th p {
    background-color: #d1d3d5;
    font-size: 18px;
    color: #0d0e0e;
    font-weight: 700;
    text-transform: uppercase;
}

/* BODY STYLING */
.generic-table-container table tbody td, .generic-table-container table tbody td p {
    background-color: #fff;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.75);
}

@media screen and (max-width: 768px) {
    .generic-title-wrapper h1 {
        font-size: 66px;
    }
}

@media screen and (max-width: 480px) {
    .generic-title-wrapper h1 {
        font-size: 55px;
    }
}


@media screen and (max-width: 400px) {
    .generic-title-wrapper h1 {
        font-size: 44px;
    }
}

.table-desktop {
    width: 100%;
}

.table-mobile {
    display: none;
}

@media screen and (max-width: 768px) {

    .table-desktop {
        display: none;
    }

    .table-mobile {
        display: block;
        width: 100%;
    }

    .mobile-column {
        margin-bottom: 0;
        overflow: hidden;
        border: 1px solid #d1d3d5;
    }
    
    .table-mobile .mobile-column:first-of-type {
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
    }
    
    .table-mobile .mobile-column:last-of-type {
        border-bottom-left-radius: 12px;
        border-bottom-right-radius: 12px;
    }

    .mobile-column-title {
        background-color: #d1d3d5;
        padding: 16px 24px;
        font-size: 18px;
        font-weight: 700;
        text-transform: uppercase;
        color: #0d0e0e;
        border-bottom: 1px solid #ffffff;
    }

    .mobile-column-content {
        background: #fff;
        padding: 16px 24px;
        font-size: 14px;
        color: rgba(0,0,0,0.75);
        border-bottom: 1px solid #d1d3d5;
    }

    .mobile-column-content:last-child {
        border-bottom: none;
    }
}