body {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
    font-family: Inter, sans-serif;
    overflow-x: hidden;
    background-color: #fff !important;
}

h1,
h2,
h3 {
    font-family: Poppins, sans-serif;
}

a {
    text-decoration: none
}

header {
    height: 100%;
    position: relative;
    z-index: 3;
}

header:after {
    content: '';
    display: none;
}

header h1 {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    display: inline-block;
    width: fit-content;
    height: fit-content;
    color: #006fa3;
    font-size: 6vw;
    text-transform: uppercase;
    transition: all 0.2s;
    cursor: wait
}

header h1:hover {
    text-shadow: 0 0 10px #006fa3;
}


.navbar {
    position: absolute;
    width: 100%;
    height: 0;
    transition: background .5s ease
}

.navbar_brand {
    position: absolute;
    top: 30px;
    left: 30px;
    display: inline-block;
    z-index: 999999;
    font: 500 2em/1 Poppins;
    color: #006fa3
}

.navbar_brand .brand-outline {
    color: transparent;
    -webkit-text-stroke: 1px #006fa3 !important;
    ;
    text-stroke: 1px #006fa3 !important;
    ;
}


.navbar_opener {
    display: inline-block;
    width: 64px;
    height: 48px;
    position: fixed;
    transform: rotate(0deg);
    cursor: pointer;
    top: 23px;
    right: 14px;
    z-index: 999999;
    background: transparent;
    border: 0;
    outline: 0
}

.navbar_opener span {
    display: block;
    position: absolute;
    height: 3px;
    width: 32px;
    opacity: 1;
    left: 16px;
    transform: rotate(0deg);
    transition: .25s ease-in-out, background-color .3s ease-out;
    background: var(--on-primary)
}

.navbar_opener span:first-child {
    top: 13px
}

.navbar_opener span:nth-child(2),
.navbar_opener span:nth-child(3) {
    top: 21px
}

.navbar_opener span:nth-child(4) {
    top: 29px
}

.navbar_opener:hover span {
    background: var(--primary) !important;

    box-shadow: 0 0 5px var(--primary) !important;
}

.navbar_opener-opened span {
    background: #fff !important
}

.navbar_opener-opened span:first-child,
.navbar_opener-opened span:nth-child(4) {
    top: 21px;
    width: 0;
    left: 50%
}

.navbar_opener-opened span:nth-child(2) {
    transform: rotate(45deg)
}

.navbar_opener-opened span:nth-child(3) {
    transform: rotate(-45deg)
}

.navbar_opener-opened:hover span {
    background: var(--primary) !important;
}

.navbar_brand,
.navbar_opener,
.navbar_title {
    transition: top .5s ease, opacity .5s ease
}

.navbar_menu {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    top: 0;
    right: 0;
    left: 0;
    z-index: 999998;
    background-color: #111517ee;
    height: 100%;
    width: 100%;
    transition: opacity .3s ease, visibility .3s ease;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.navbar_menu .menu {
    margin-left: 0;
    padding: 2rem 0 0;
}

.navbar_menu .menu .menu_list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.625rem;
    transition: opacity .3s ease-in;
    visibility: hidden;
    opacity: 0
}

/* Remove left offset on lists to avoid clipping */
.navbar_menu .menu .menu_list-main,
.navbar_menu .menu .menu_list-alter {
    padding-left: 0;
    margin-left: 0;
}

/* Make links full-width and add internal padding instead */
.navbar_menu .menu .menu_item .menu_link {
    display: block;
    width: 100%;
    padding: .5rem 2rem;
    overflow: hidden;
}

/* Ensure both lists align to the same left edge */
.navbar_menu .menu .menu_list-main .menu_link,
.navbar_menu .menu .menu_list-alter .menu_link {
    padding-left: 1.25rem;
}

/* Ensure secondary list also has left offset */
.navbar_menu .menu .menu_list-alter {
    padding-left: 2rem;
}

.navbar_menu .menu .menu_item {
    padding: 0;
    margin: 0
}

.navbar_menu .menu .menu_item:before {
    display: none
}

.navbar_menu .menu .menu_item .menu_link {
    font-family: Inter, sans-serif;
    font-weight: 300;
    font-size: 18px;
    font-size: 1.125rem;
    color: #888;
    text-decoration: none;
    line-height: 1.7777;
    transition: color .3s;
    position: relative;
    overflow: hidden;
    display: inline-block
}

.navbar_menu .menu .menu_item .menu_link:hover {
    color: #fff;
    text-shadow: 0 0 5px #006fa3;
}

.navbar_menu .menu .menu_item .menu_link-active {
    color: #006fa3 !important
}

.navbar_menu .menu .menu_item .menu_link-anim .link_layer {
    position: absolute;
    left: 1;
    overflow: hidden;
    background-color: #111517;
    width: calc(100% - 4rem);
    display: block;
    transform: translate3d(-100%, 0, 0);
    animation: anim-out-layer .3s ease-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.navbar_menu .menu .menu_item .menu_link-anim .link_layer:before {
    background-color: #111517;
    content: attr(data-text);
    width: 100%;
    display: block;
    transform: translate3d(100%, 0, 0);
    color: #006fa3;
    animation: anim-out-text .3s ease-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.navbar_menu .menu .menu_item .menu_link-anim:hover .link_layer {
    animation: anim-in-layer .3s ease forwards
}

.navbar_menu .menu .menu_item .menu_link-anim:hover .link_layer:before {
    animation: anim-in-text .3s ease forwards
}

.navbar_menu .menu .menu_item-big .menu_link {
    font-family: Poppins, sans-serif;
    font-weight: 700;
    font-size: 32px;
    font-size: 2rem;
    text-transform: uppercase;
    line-height: 1.22;
    color: #fff
}

.navbar-fixed.navbar-opened {
    height: 100%
}

.navbar-opened .navbar_menu {
    visibility: visible;
    opacity: 1
}

.navbar-opened .menu .menu_list-main {
    animation: showNavigation .9s ease forwards;
    visibility: visible
}

.navbar-opened .menu .menu_list-alter {
    animation: showNavigation .9s .2s ease forwards;
    visibility: visible
}

.navbar_menu .social {
    margin-left: 8px;
    visibility: hidden;
    opacity: 0;
    transition: opacity .3s ease-in;
    text-align: right;
    padding: 35px
}

.navbar-opened .social {
    animation: showSocials .9s ease .4s forwards;
    visibility: visible
}

.social a {
    color: #fff;
    text-decoration: none;
    font-size: 28px;
    display: inline-block;
    width: 35px
}

.social a:hover {
    text-shadow: 0 0 5px var(--primary);
}

.navbar-opened .navbar_opener span {
    background: #fff !important
}

.navbar-opened .navbar_opener span:first-child,
.navbar-opened .navbar_opener span:nth-child(4) {
    top: 21px;
    width: 0;
    left: 50%
}

.navbar-opened .navbar_opener span:nth-child(2) {
    transform: rotate(45deg)
}

.navbar-opened .navbar_opener span:nth-child(3) {
    transform: rotate(-45deg)
}

.navbar-opened .navbar_opener:hover span {
    background: var(--primary) !important
}

.navbar-opened .navbar_brand {
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
}

@keyframes showNavigation {
    0% {
        transform: translate3d(0, -40px, 0);
        opacity: 0
    }

    to {
        transform: translateZ(0);
        opacity: 1
    }
}

@keyframes showSocials {
    0% {
        transform: translate3d(0, -40px, 0);
        opacity: 0
    }

    to {
        transform: translateZ(0);
        opacity: 1
    }
}

@keyframes anim-in-layer {
    0% {
        transform: translate3d(-100%, 0, 0)
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes anim-out-layer {
    0% {
        transform: translateZ(0)
    }

    to {
        transform: translate3d(100%, 0, 0)
    }
}

@keyframes anim-in-text {
    0% {
        transform: translate3d(100%, 0, 0)
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes anim-out-text {
    0% {
        transform: translateZ(0)
    }

    to {
        transform: translate3d(-100%, 0, 0)
    }
}

#case {
    background: #006fa3 url(https://i.imgur.com/SMG8MCh.png) 180% 50% no-repeat;
    height: 80vh;
    background-size: 80%;
    transition: all 0.84s;
    position: relative;

}

#case:hover {
    background-position: 100% 50%;
}

#case h2 {
    margin: 0;
    font: 400 2.3em/1 Poppins;
    text-transform: uppercase
}

#case:hover .case_text {
    margin: 35px;
}

.case_text {
    transform: skew(-5deg);
    background: rgba(0, 0, 0, .4);
    width: 80%;
    max-width: 400px;
    padding: 15px;
    position: absolute;
    margin: 15px;
    top: 0;
    transition: all 0.7s;
}

.case_text a {
    display: inline-block;
    padding: 8px 15px;
    background: #ddd;
    font: 600 1.2em/1 Inter;
    color: #000;
    margin: 10px 0;
    mix-blend-mode: screen;
}

.case_text a:hover {
    background: #ffffff;
    box-shadow: 0 0 10px #fffa
}

@import url('https://fonts.googleapis.com/css?family=Lato:300,400');
@import url('https://fonts.googleapis.com/css?family=Roboto:100,300,400');
@import url('https://fonts.googleapis.com/css?family=Raleway:300,400,600');

* {
    max-width: 100%;
}

a {
    text-decoration: none;
}



.wrapper {
    transition: 0.1s all ease;
}

.hero-section {
    width: 100vw;
    height: 100vh;
    position: relative;
    /* Fallback background color */
    background-color: #f0f8ff;
}

/* Safari iOS specific background image fixes */
@supports (-webkit-appearance: none) {
    .hero-section {
        background-image:        url('../images/photo1.webp');
        -webkit-background-size: cover;
        background-size: cover;
    }
}

/* Fallback for when external images fail to load */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Show fallback if background image fails */
.hero-section:not([style*="background-image"])::after,
.hero-section[style*="background-image: none"]::after {
    opacity: 1;
}

/* Safari iOS specific background image loading */
.hero-section.loading {
    background-image: none;
}

.hero-section.loading::after {
    opacity: 1;
}

/* Alternative background for Safari iOS */
@supports (-webkit-touch-callout: none) {
    .hero-section {
        background-image: url('../images/photo1.webp');
        background-attachment: scroll;
        -webkit-background-attachment: scroll;
    }
}

/* Safari iOS specific background image fixes with multiple fallbacks */
@media screen and (-webkit-min-device-pixel-ratio: 1) {
    .hero-section {
        background-image:
        url('../images/photo1.webp'),
            linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        background-size: cover, cover;
        background-position: center, center;
        background-repeat: no-repeat, no-repeat;
    }
}

/* Force background image loading in Safari */
.hero-section {
    background-image:
        url('../images/photo1.webp'),
        linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    /* Safari specific properties */
    -webkit-background-size: cover, cover;
    -webkit-background-position: center, center;
    -webkit-background-repeat: no-repeat, no-repeat;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    z-index: 1;
}





header {
    width: 100%;

    h3 {
        float: right;
        color: white;
    }

    span {
        margin-left: -6px;
    }
}




.moved {
    transform: translateX(0) !important;
    opacity: 1 !important;
}

.overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
}


.content-container {
    display: block;
    width: 900px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1.4;
    text-align: left;
    transition: 0.5s all ease;
    z-index: 2;
}

.content-container h1 {
    font-family: Poppins, sans-serif;
    font-weight: 800;
    font-size: clamp(1.75rem, 5vw, 3rem);
    color: #006fa3;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
}

/* Override for mobile - more specific */
@media screen and (max-width: 768px) {
    .navbar_brand {
        display: none;
    }

}

@media screen and (max-width: 480px) {}

.content-container h1 .subtitle {
    font-size: 0.6em;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.2;
}

.content-container h1 .outline-text {
    color: transparent;
    -webkit-text-stroke: 2px #006fa3;
    text-stroke: 2px #006fa3;
    font-weight: 800;
}

.content-container a {
    display: inline-block;
    font-family: Inter, sans-serif;
    border: 2px solid #006fa3;
    padding: 10px 24px;
    color: #006fa3;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.4s all ease;
    margin-right: .75rem;
    margin-top: .75rem;
    background-color: rgba(255, 255, 255, 0.9);
    text-shadow: none;
    position: relative;
    z-index: 2;
}

.content-container a:hover {
    color: black;
    background-color: #006fa3;
    padding: 10px 50px;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .navbar_brand {
        font-size: 2em !important;
        top: 20px !important;
        left: 20px !important;
    }

    .navbar_opener {
        top: 15px;
        right: 10px;
        width: 48px;
        height: 36px;
    }

    .navbar_opener span {
        width: 24px;
        left: 12px;
    }

    .content-container {
        width: 90%;
        max-width: 500px;
        padding: 0 1rem;
    }

    .content-container h1 .subtitle {
        font-size: 0.7em;
        letter-spacing: 1.5px;
    }

    .content-container a {
        display: block;
        margin: 1rem 0;
        padding: 14px 28px;
        text-align: center;
        font-size: 1.1rem;
    }

    .navbar_menu .menu .menu_item .menu_link {
        padding: 0.75rem 1rem;
        font-size: 1.5rem;
    }

    .navbar_menu .menu .menu_item-big .menu_link {
        font-size: 1.75rem;
    }

    .navbar_menu .social {
        padding: 20px;
    }

    .social a {
        font-size: 24px;
        width: 30px;
    }
}

@media screen and (max-width: 480px) {
    .navbar_brand {
        font-size: 1.75em;
        top: 15px;
        left: 15px;
    }

    .content-container a {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .navbar_menu .menu .menu_item .menu_link {
        padding: 0.5rem 0.75rem;
        font-size: 1.25rem;
    }

    .navbar_menu .menu .menu_item-big .menu_link {
        font-size: 1.5rem;
    }
}

/* Who We Serve Interactive Options Styles */
.client-categories {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.client-categories .options {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    overflow: hidden;
    min-width: 600px;
    max-width: 900px;
    width: calc(100% - 100px);
    height: 400px;
    gap: 10px;
}

.client-categories .option {
    position: relative;
    overflow: hidden;
    min-width: 60px;
    background: var(--optionBackground, #E6E9ED);
    background-size: auto 120%;
    background-position: center;
    cursor: pointer;
    transition: .5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
    border-radius: 30px;
    flex-grow: 1;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.client-categories .option:nth-child(1) {
    --defaultBackground: #ED5565;
}

.client-categories .option:nth-child(2) {
    --defaultBackground: #FC6E51;
}

.client-categories .option:nth-child(3) {
    --defaultBackground: #FFCE54;
}

.client-categories .option:nth-child(4) {
    --defaultBackground: #2ECC71;
}

.client-categories .option:nth-child(5) {
    --defaultBackground: #5D9CEC;
}

.client-categories .option.active {
    flex-grow: 10000;
    transform: scale(1);
    max-width: 600px;
    margin: 0px;
    border-radius: 40px;
    background-size: auto 100%;
}

.client-categories .option.active .shadow {
    box-shadow: inset 0 -120px 120px -120px black, inset 0 -120px 120px -100px black;
}

.client-categories .option.active .label {
    bottom: 20px;
    left: 20px;
}

.client-categories .option.active .label .info>div {
    left: 0px;
    opacity: 1;
}

.client-categories .option:not(.active) {
    flex-grow: 1;
    border-radius: 30px;
}

.client-categories .option:not(.active) .shadow {
    bottom: -40px;
    box-shadow: inset 0 -120px 0px -120px black, inset 0 -120px 0px -100px black;
}

.client-categories .option:not(.active) .label {
    bottom: 10px;
    left: 10px;
}

.client-categories .option:not(.active) .label .info>div {
    left: 20px;
    opacity: 0;
}

.client-categories .shadow {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    height: 120px;
    transition: .5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}

.client-categories .label {
    display: flex;
    position: absolute;
    right: 0px;
    height: 40px;
    transition: .5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}

.client-categories .icon {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    min-width: 40px;
    max-width: 40px;
    height: 40px;
    border-radius: 100%;
    background-color: white;
    color: var(--defaultBackground);
    font-size: 18px;
}

.client-categories .info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 10px;
    color: white;
    white-space: pre;
}

.client-categories .info>div {
    position: relative;
    transition: .5s cubic-bezier(0.05, 0.61, 0.41, 0.95), opacity .5s ease-out;
}

.client-categories .main {
    font-weight: bold;
    font-size: 1.2rem;
}

.client-categories .sub {
    transition-delay: .1s;
    font-size: 0.9rem;
}

/* Mobile responsive adjustments for options */
@media screen and (max-width: 1024px) {
    .client-categories .options {
        min-width: 500px;
        max-width: 700px;
        height: 350px;
    }
}

@media screen and (max-width: 768px) {
    .client-categories {
        margin-top: 2rem;
        padding: 1rem;
    }

    .client-categories .options {
        flex-direction: column;
        min-width: 100%;
        max-width: 100%;
        width: 100%;
        height: auto;
        gap: 12px;
    }

    .client-categories .option {
        min-height: 80px;
        height: 80px;
        width: 100%;
        border-radius: 20px;
    }

    .client-categories .option.active {
        height: 250px;
        max-width: 100%;
        border-radius: 20px;
    }

    .client-categories .main {
        font-size: 1rem;
    }

    .client-categories .sub {
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 640px) {
    .client-categories .options {
        gap: 10px;
    }

    .client-categories .option {
        min-height: 70px;
        height: 70px;
    }

    .client-categories .option.active {
        height: 220px;
    }

    .client-categories .icon {
        min-width: 35px;
        max-width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .client-categories .main {
        font-size: 0.95rem;
    }

    .client-categories .sub {
        font-size: 0.75rem;
    }
}

@media screen and (max-width: 480px) {
    .client-categories {
        padding: 0.5rem;
        margin-top: 1.5rem;
    }

    .client-categories .options {
        gap: 8px;
        padding: 0 0.5rem;
    }

    .client-categories .option {
        min-height: 65px;
        height: 65px;
    }

    .client-categories .option.active {
        height: 200px;
    }

    .client-categories .icon {
        min-width: 32px;
        max-width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .client-categories .main {
        font-size: 0.9rem;
    }

    .client-categories .sub {
        font-size: 0.7rem;
    }
}

@media screen and (max-width: 360px) {
    .client-categories .options {
        gap: 6px;
        padding: 0 0.25rem;
    }

    .client-categories .option {
        min-height: 60px;
        height: 60px;
    }

    .client-categories .option.active {
        height: 180px;
    }

    .client-categories .icon {
        min-width: 30px;
        max-width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .client-categories .label {
        height: 35px;
    }

    .client-categories .main {
        font-size: 0.85rem;
    }

    .client-categories .sub {
        font-size: 0.65rem;
    }
}

/* Professional Footer Styles */
.professional-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.professional-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding: 4rem 0 2rem;
}

.footer-section h3 {
    font-family: Poppins, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.footer-section h4 {
    font-family: Poppins, sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1846db;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: white;
}

.footer-logo .tagline {
    font-style: italic;
    color: #1846db;
    margin-bottom: 1rem;
    white-space: nowrap;
    font-size: 0.75rem;
    overflow: hidden;
    text-overflow: ellipsis;
}

.footer-description {
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #1847da;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 111, 163, 0.3);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: #1846db;
    padding-left: 10px;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: white;
    transition: width 0.3s ease;
}

.footer-links a:hover::before {
    width: 6px;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #cccccc;
}

.contact-item i {
    color: white;
    width: 20px;
    margin-top: 2px;
}

.footer-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-align: center;
    justify-content: center;
}

.footer-btn.primary {
    background: white;
    color: #666;


}

.footer-btn.primary:hover {
    background: #1846db;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 111, 163, 0.3);
}

.footer-btn.secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid;
}

.footer-btn.secondary:hover {
    background: #1846db;
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright p {
    color: #999999;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: #999999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary);
}

/* Mobile Responsive Footer */
@media screen and (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 0 1.5rem;
    }

    .footer-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .footer-container {
        padding: 0 1rem;
    }

    .footer-content {
        padding: 2rem 0 1rem;
    }

    .footer-buttons {
        flex-direction: column;
    }

    .footer-legal {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Trust Modal Styles */
.trust-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(0.5rem);
    animation: fadeIn 0.3s ease-out;
}

.trust-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.trust-modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 1.5rem;
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.15);
    max-width: 56rem;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideInUp 0.4s ease-out;
}

.trust-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 0.125rem solid #e2e8f0;
    background: linear-gradient(135deg, #006fa3 0%, #004d7a 100%);
    color: white;
    border-radius: 1.5rem 1.5rem 0 0;
}

.trust-modal-header h2 {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 600;
    color: white;
}

.trust-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    padding: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.trust-modal-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.trust-modal-body {
    padding: 2rem;
}

.trust-section {
    margin-bottom: 2.5rem;
}

.trust-section:last-child {
    margin-bottom: 0;
}

.trust-section h3 {
    color: #006fa3;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 0.125rem solid #e2e8f0;
}

.trust-section h4 {
    color: #334155;
    font-size: 1.125rem;
    margin: 1.5rem 0 1rem;
    font-weight: 600;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 0.75rem;
    border-left: 0.25rem solid #006fa3;
}

.trust-check {
    font-size: 1.25rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.trust-text {
    flex: 1;
    line-height: 1.6;
    color: #475569;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 1rem;
}

.info-item {
    padding: 0.75rem;
    background: #f1f5f9;
    border-radius: 0.5rem;
    border-left: 0.25rem solid #006fa3;
    font-size: 0.95rem;
    line-height: 1.5;
}

.partnership-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.partner-item {
    padding: 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 0.75rem;
    text-align: center;
    font-weight: 500;
    color: #475569;
    border: 0.125rem solid #e2e8f0;
}

.testimonial {
    background: #f8fafc;
    padding: 1.25rem;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    border-left: 0.25rem solid #006fa3;
    font-style: italic;
    color: #475569;
    line-height: 1.6;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
}

.policy-link {
    display: block;
    padding: 0.75rem 1rem;
    background: #006fa3;
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    text-align: center;
    font-weight: 500;
    transition: all 0.2s ease;
}

.policy-link:hover {
    background: #004d7a;
    transform: translateY(-0.125rem);
}

.protection-notice {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 0.125rem solid #f59e0b;
    border-radius: 0.75rem;
    padding: 1.25rem;
    margin-top: 1rem;
}

.protection-notice p {
    margin: 0;
    color: #92400e;
    line-height: 1.6;
    font-weight: 500;
}

.trust-modal-footer {
    padding: 1.5rem 2rem 2rem;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    border-top: 0.125rem solid #e2e8f0;
    background: #f8fafc;
    border-radius: 0 0 1.5rem 1.5rem;
}

.trust-cta-button {
    background: linear-gradient(135deg, #006fa3 0%, #004d7a 100%);
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 111, 163, 0.3);
}

.trust-cta-button:hover {
    transform: translateY(-0.125rem);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 111, 163, 0.4);
}

.trust-close-button {
    background: #64748b;
    color: white;
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.trust-close-button:hover {
    background: #475569;
    transform: translateY(-0.125rem);
}

/* Modal Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(2rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 48rem) {
    .trust-modal-content {
        margin: 1rem;
        max-height: calc(100vh - 2rem);
    }

    .trust-modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }

    .trust-modal-header h2 {
        font-size: 1.5rem;
    }

    .trust-modal-body {
        padding: 1.5rem;
    }

    .trust-modal-footer {
        padding: 1rem 1.5rem 1.5rem;
        flex-direction: column;
    }

    .trust-cta-button,
    .trust-close-button {
        width: 100%;
    }

    .partnership-logos {
        grid-template-columns: 1fr;
    }

    .links-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 30rem) {
    .trust-modal-content {
        margin: 0.5rem;
        max-height: calc(100vh - 1rem);
    }

    .trust-modal-header,
    .trust-modal-body,
    .trust-modal-footer {
        padding: 1rem;
    }
}

/* Auto Insurance Page Specific Styles */
.main-hero-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.auto-insurance-left-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.auto-insurance-right-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.auto-insurance-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #006fa3;
    margin-bottom: 1rem;
    text-align: left;
    line-height: 1.2;
}

.auto-insurance-hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: #666;
    text-align: left;
    margin-bottom: 2rem;
    font-weight: 400;
}

.auto-insurance-trust-indicators {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 0;
}

.auto-insurance-trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(0, 111, 163, 0.05);
    border-radius: 0.5rem;
    border: 1px solid rgba(0, 111, 163, 0.1);
    transition: all 0.3s ease;
}

.auto-insurance-trust-item:hover {
    background: rgba(0, 111, 163, 0.1);
    transform: translateY(-2px);
}

.auto-insurance-trust-item i {
    font-size: 1.5rem;
    color: #006fa3;
    width: 2rem;
    text-align: center;
    flex-shrink: 0;
}

.auto-insurance-trust-item span {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.auto-insurance-security-badges {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    margin: 0;
    flex-wrap: wrap;
}

.auto-insurance-badge {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    max-width: 120px;
}

.auto-insurance-badge:hover {
    transform: translateY(-3px);
}

.auto-insurance-badge img {
    display: block;
    width: 100%;
    height: auto;
}

.auto-insurance-payment-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    border: 2px solid rgba(0, 111, 163, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.auto-insurance-pricing-info h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.auto-insurance-price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.auto-insurance-currency {
    font-size: 1.5rem;
    color: #006fa3;
    font-weight: 600;
}

.auto-insurance-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #006fa3;
    line-height: 1;
}

.auto-insurance-period {
    font-size: 1.2rem;
    color: #666;
    font-weight: 500;
}

.auto-insurance-price-note {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.auto-insurance-pay-button {
    background: linear-gradient(135deg, #006fa3 0%, #004d7a 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 111, 163, 0.3);
    margin-bottom: 1rem;
    min-width: 200px;
    justify-content: center;
    width: 100%;
}

.auto-insurance-pay-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 111, 163, 0.4);
    background: linear-gradient(135deg, #004d7a 0%, #003d5c 100%);
}

.auto-insurance-pay-button:active {
    transform: translateY(0);
}

.auto-insurance-pay-button i {
    font-size: 1.2rem;
}

.auto-insurance-payment-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #28a745;
    font-size: 0.9rem;
    font-weight: 500;
}

.auto-insurance-payment-security i {
    font-size: 1rem;
}

.auto-insurance-trust-testimonials {
    margin: 0;
}

.auto-insurance-testimonial {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #006fa3;
    text-align: left;
}

.auto-insurance-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    justify-content: flex-start;
}

.auto-insurance-stars i {
    color: #ffc107;
    font-size: 1.1rem;
}

.auto-insurance-testimonial p {
    font-style: italic;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.auto-insurance-testimonial cite {
    color: #006fa3;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-hero-text {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .auto-insurance-trust-indicators {
        grid-template-columns: 1fr 1fr;
    }

    .auto-insurance-security-badges {
        justify-content: center;
    }

    .auto-insurance-payment-section {
        order: -1;
    }
}

@media (max-width: 768px) {
    .auto-insurance-trust-indicators {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .auto-insurance-trust-item {
        padding: 0.75rem;
    }

    .auto-insurance-security-badges {
        gap: 0.5rem;
    }

    .auto-insurance-badge {
        max-width: 100px;
    }

    .auto-insurance-payment-section {
        padding: 1.5rem;
    }

    .auto-insurance-amount {
        font-size: 2.5rem;
    }

    .auto-insurance-pay-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        min-width: 180px;
    }
}

@media (max-width: 480px) {
    .auto-insurance-hero-title {
        font-size: 2rem;
        text-align: center;
    }

    .auto-insurance-hero-subtitle {
        font-size: 1rem;
        text-align: center;
    }

    .auto-insurance-trust-item {
        padding: 0.5rem;
    }

    .auto-insurance-trust-item i {
        font-size: 1.25rem;
    }

    .auto-insurance-trust-item span {
        font-size: 0.9rem;
    }

    .auto-insurance-payment-section {
        padding: 1rem;
    }

    .auto-insurance-amount {
        font-size: 2rem;
    }

    .auto-insurance-pay-button {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
        min-width: 160px;
    }

    .auto-insurance-stars {
        justify-content: center;
    }

    .auto-insurance-testimonial {
        text-align: center;
    }
}