/* ============================================================================
   FONTS AND VARIABLES
============================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

@font-face {
    font-family: "New York Small";
    src: url('/fonts/newyorksmall-regular.woff') format('woff'),
         url('/fonts/newyorksmall-regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

:root {
    --font-primary: "New York Small", Georgia, serif !important;
    --font-secondary: "Montserrat", sans-serif !important;
    --font-size-base: 1rem;
    --font-size-lg: 1.5rem;
    --font-size-sm: 0.875rem;
}

/* ============================================================================
   GLOBAL STYLES
============================================================================ */

* {
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding: 0;
    margin: 0;
}

h1,
h2,
h3,
span {
    font-family: var(--font-primary);
    font-size: var(--font-size-lg);
}

p,
li {
    font-family: var(--font-secondary);
    font-size: var(--font-size-base);
}

button {
    font-family: var(--font-secondary);
}

a {
    font-family: var(--font-secondary);
}

/* ============================================================================
   HEADER STYLES
============================================================================ */

.header-container {
    position: relative;
    width: 100%;
    height: 600px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 52rem;
    object-fit: cover;
    z-index: 1;
}

.custom-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 50px;
    background-color: rgba(230, 233, 242, 0.5);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s;
    z-index: 1020;
}

.custom-navbar.menu-open {
    background-color: #ffffff !important;
}

.navbar-sticky {
    background-color: rgba(230, 233, 242, 0.95);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Navigation Elements */
.logo-container img {
    width: 3rem;
    height: auto;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-family: var(--font-secondary);
    font-size: 14px;
}

.consultation-btn {
    background-color: black;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 500;
    position: absolute;
    right: 6rem;
    bottom: 23px;
}

.consultation-btn:hover {
    background-color: #181818;
}

/* Mobile Navigation */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    height: 24px;
    cursor: pointer;
}

.burger-menu div {
    width: 30px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    background-color: #ffffff !important;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    height: 100%;
    gap: 15px;
    z-index: 999;
    justify-content: center;
    align-items: center;
}

.mobile-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 10px 0;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.mobile-menu .consultation-btn {
    position: relative;
    top: 5px;
    width: 60%;
    left: 5px;
    text-align: center;
}

/* Hero Section */
.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 80%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-text p {
    font-weight: 400;
    font-size: 1.3rem;
    color: #000;
}

.hero-text h1 {
    font-size: 6rem;
    font-weight: 600;
    color: #E6E9F2;
    margin-bottom: 10px;
}

.more-btn {
    background-color: #F3F4F6;
    color: black;
    border: none;
    padding: 15px 45px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    position: absolute;
    bottom: -10rem;
    font-weight: 600;
    font-family: var(--font-secondary);
    font-size: 14px;
}

.free-zones-text {
    position: absolute;
    bottom: -13rem;
    left: 1rem;
    right: 0;
    text-align: center;
    color: #E6E9F2;
    font-weight: 500;
    font-size: 1.2rem;
    z-index: 2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.free-zones-text p {
    font-weight: 500;
    font-size: 1.3rem;
}

/* ============================================================================
   MAIN CONTENT SECTIONS
============================================================================ */

/* Main Text Section */
.main-text {
    margin-top: 25%;
}

.main-text span {
    font-weight: 600;
    font-size: 2.3rem;
}

.main-text p {
    font-weight: 300;
    font-size: 2.3rem;
}

.main-button {
    background-color: #183A77;
    color: #E6E9F2;
    border: none;
    padding: 15px 35px !important;
    border-radius: 5px;
    font-weight: 500;
    width: 20%;
}

/* Video Section */
.video-section {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 9%;
}

.video-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
    pointer-events: none;
}

.video-section video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay-container {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10%;
    color: white;
    transform: translateY(-50%);
    text-align: center;
}

.overlay-container h1 {
    font-weight: 600;
    font-size: 2.3rem;
    margin-bottom: 0.5rem;
    min-height: 3rem;
    color: #F3F4F6;
}

.overlay-container p {
    font-weight: 500;
    font-size: 1.3rem;
    min-height: 3.2rem;
    color: #F3F4F6;
}

.stat {
    flex: 1;
}

.desktop-text {
    display: block;
}

.mobile-text {
    display: none;
}

/* ============================================================================
   BUSINESS TYPES SECTION
============================================================================ */

.section-header {
    display: flex;
    gap: 0;
    justify-content: space-between;
}

.header-card {
    flex: 1;
    background-color: #E6E9F2;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    z-index: 1010;
}

.header-card-content {
    flex: 1;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
}

.header-card h1 {
    font-weight: 600;
    font-size: 2.3rem;
}

.header-card p {
    font-weight: 500;
    font-size: 1rem;
}

.header-card-content span {
    font-weight: 400;
    font-size: 1rem;
    font-family: var(--font-secondary);
}

.header-card-content ul {
    list-style: none;
    padding-left: 0;
}

.header-card-content ul li {
    position: relative;
    padding-left: 2rem;
    font-size: 1rem;
}

.header-card-content ul li::before {
    content: '';
    font-size: 0.8em;
    font-weight: bold;
    color: white;
    background-color: #183A77;
    border-radius: 50%;
    width: 1.2em;
    height: 1.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-image: url('../img/Vector-1.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.header-card-content-2 ul li::before {
    content: '';
    font-size: 0.8em;
    font-weight: bold;
    color: white;
    background-color: #E6C09C;
    border-radius: 50%;
    width: 1.2em;
    height: 1.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #183A77;
    background-image: url('../img/Vector-2.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.section-header .header-card .container {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.header-card-content h1,
.header-card-content p,
.header-card-content ul {
    flex-grow: 0;
}

.footer-note {
    margin-top: auto;
    padding-top: 20px;
}

.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 100%;
}

.tab {
    border: 1px solid #C6C6C6;
    text-align: center;
    border-radius: 10px;
    padding: 8px 16px !important;
    white-space: nowrap;
    font-family: var(--font-secondary);
    font-size: 13px;
    font-weight: 400;
}

/* ============================================================================
   SERVICES SECTION
============================================================================ */

.section-header-services h1 {
    font-weight: 600;
    font-size: 2.3rem;
}

.section-header-services p {
    font-weight: 400;
    font-size: 1.3rem;
}

.section-services h1 {
    font-size: calc(var(--font-size-lg) * 1.5);
    font-weight: 600;
}

.section-services p {
    font-size: calc(var(--font-size-base) * 1.2);
    font-weight: 400;
}

.container-services {
    max-width: 1400px !important;
}

.service {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.service-card {
    background: #F3F4F6;
    width: 100%;
    padding: 20px;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 300px;
    position: relative;
    transition: background 0.3s ease;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    margin: 0;
    height: 100%;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
}

.service-content h3 {
    margin: 0;
    text-align: left;
    font-weight: 600;
    align-self: flex-start;
}

.service-content li {
    margin: 0;
    padding: 0;
    text-align: left;
    font-weight: 400;
    word-break: break-word;
}

.service-content ul {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    list-style-type: disc;
}

.service-card:hover {
    background: #183A77;
}

.service-card .service-content h3,
.service-card .service-content li {
    transition: color 0.3s ease;
}

.service-card:hover .service-content h3,
.service-card:hover .service-content li {
    color: white;
}

.consultation-btn-card {
    position: absolute;
    bottom: 20px;
    left: 22%;
    transform: translateX(-50%);
    border: 1px solid white;
    border-radius: 15px;
    background: transparent;
    color: white;
    padding: 10px 20px;
    font-size: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .consultation-btn-card {
    opacity: 1;
}

/* ============================================================================
   QUIZ SECTION
============================================================================ */

.section-header-quiz h1 {
    font-weight: 600;
    font-size: 2.3rem;
}

.section-header-quiz p {
    font-weight: 400;
    font-size: 1.3rem;
}

.form-area {
    flex: 7;
    background-color: #F3F4F6;
    border-radius: 10px;
}

.form-area h1 {
    font-weight: 400;
    font-size: 2.3rem;
}

.pick-area-forms {
    margin-top: 5%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    justify-content: center;
    justify-items: center;
}

.pick-area-form {
    border: 2px solid #C6C6C6;
    border-radius: 5px;
    width: 100%;
    max-width: 24rem;
    height: 4rem;
}

.pick-area-form p {
    margin: 0;
    font-weight: 500;
    color: black;
}

.pick-area-form input[type="checkbox"] {
    display: none;
}

.pick-area-form label {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 1rem;
    cursor: pointer;
}

.custom-checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid #000;
    border-radius: 50%;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pick-area-form input[type="checkbox"]:checked+label .custom-checkbox {
    border-color: #183A77;
}

.pick-area-form input[type="checkbox"]:checked+label .custom-checkbox::after {
    content: '';
    width: 16px;
    height: 16px;
    background-color: #183A77;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}

.sidebar {
    flex: 3;
    background-color: #E6E9F2;
    padding: 2rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
}

.sidebar h1 {
    font-weight: 600;
}

.step-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 10px;
}

.step-indicator {
    margin-top: 6%;
    color: #8F99A2;
}

.button-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.next-button {
    background-color: #2952A4;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 10px 15px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.back-button {
    background: transparent;
    border: 2px solid #183A77;
    border-radius: 10px;
    padding: 8px 12px;
    cursor: pointer;
    display: flex;
    align-items: flex-end;
}

.next-button svg {
    transition: transform 0.3s ease;
}

.next-button:hover svg {
    transform: translateX(5px);
}

/* ============================================================================
   GOVERNMENT PARTNERS SECTION
============================================================================ */

.section-header-icons h1 {
    font-size: 2.3rem;
}

.section-header-icons span {
    font-weight: 600;
    font-size: 2.3rem;
}

.section-icons {
    padding: 20px;
}

.section-icons-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.cards-top,
.cards-bottom {
    display: grid;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
    height: 100%;
}

.cards-top {
    display: grid;
    grid-template-columns: repeat(5, 208px);
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
}

.cards-bottom {
    display: grid;
    grid-template-columns: repeat(6, 220px);
    gap: 20px;
    justify-content: center;
}

.card {
    background-color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 1;
    border: none;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.square-card {
    width: 13em;
    height: 13em;
}

/* ============================================================================
   TESTIMONIALS SECTION
============================================================================ */

.section-header-testimonials h1 {
    font-weight: 600;
    font-size: 2.3rem;
}

.section-header-testimonials p {
    font-weight: 400;
    font-size: 1.3rem;
}

.testimonial-card {
    width: 100%;
    max-width: 27rem;
    height: 100%;
    background-color: #FEF9F5;
    padding: 1.5rem;
    border-radius: 1rem;
    min-height: 341px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    word-wrap: break-word;
}

.testimonial-card:hover {
    background-color: #2952A4;
    color: white;
}

.testimonial-card:hover p {
    color: white;
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50%;
    position: relative;
}

.avatar {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    object-fit: cover;
}

.google-reviews {
    width: 6rem;
    height: auto;
    margin-bottom: 50px;
}

.testimonial-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.testimonial-text {
    font-size: 1rem;
    color: #333;
    font-weight: 400;
}

.swiper {
    position: relative;
    overflow: visible;
}

.swiper-buttons {
    position: absolute;
    top: -60px;
    right: 0;
    display: flex;
    gap: 30px;
    z-index: 10;
}

.swiper-button-prev,
.swiper-button-next {
    width: 40px;
    height: 40px;
    background-color: #2952A4;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: relative;
}

.swiper-button-prev {
    right: 50px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
    color: white;
}

.swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.swiper-slide {
    display: flex;
    align-items: stretch;
}

.swiper-pagination-progressbar {
    height: 4px;
    background: #ddd;
    margin-top: 20px;
}

.swiper-pagination-progressbar-fill {
    background-color: #2952A4;
}

.swiper-pagination {
    display: none;
}

/* ============================================================================
   PRICING PLANS SECTION
============================================================================ */

.section-header-plan h1 {
    font-weight: 400;
    font-size: 2.3rem;
}

.section-header-plan span {
    font-weight: 600;
    font-size: 2.3rem;
}

.section-header-plan p {
    font-size: 1.3rem;
}

.plan-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.plan-card {
    background-color: #F3F4F6;
    border-radius: 10px;
    height: auto;
    width: 42rem;
    flex: 1 1 calc(50% - 2rem);
    max-width: 42rem;
}

.plan-card h1 {
    font-weight: 400;
    font-size: 2.3rem;
}

.plan-card span {
    font-weight: 600;
    font-size: 2.3rem;
}

.plan-card-content p {
    font-weight: 400;
    font-size: 2.3rem;
}

.plan-card-content span {
    font-weight: 600;
    font-size: 2.3rem;
    font-family: var(--font-secondary);
}

.plan-card-button {
    width: 80%;
    text-align: center;
    border-radius: 10px;
    border: none;
    background-color: #2952A4;
    color: #E6E9F2;
}

.plan-card-content ul {
    list-style: none;
    padding-left: 0;
}

.plan-card-content ul li {
    position: relative;
    padding-left: 2rem;
    font-size: 1rem;
}

.plan-card-content ul li::before {
    content: '';
    font-size: 0.8em;
    font-weight: bold;
    color: white;
    background-color: #183A77;
    border-radius: 50%;
    width: 1.2em;
    height: 1.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-image: url('../img/Vector-1.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/* ============================================================================
   8 KEY STEPS SECTION
============================================================================ */

.section-header-8key h1 {
    font-weight: 600;
    font-size: 2.3rem;
}

.section-header-8key p {
    font-weight: 400;
    font-size: 1.3rem;
}

.section-8key {
    width: 100%;
    padding: 20px 0;
    overflow: hidden;
}

.image-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.image-container.desktop-layout {
    display: flex;
    justify-content: center;
}

.swiper-container.image-slider {
    display: none;
}

.image-box {
    width: 13rem;
    height: 26.25rem;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    border-radius: 10px;
    background-color: #183A77;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    transition: background-image 0.3s ease;
    transform-origin: center;
    overflow: hidden;
}

.btn-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.consultation-button-8 {
    background-color: black;
    color: white;
    font-size: 1.2rem;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    font-family: "Montserrat", sans-serif;
}

/* ============================================================================
   SPECIALISTS SECTION
============================================================================ */

.section-header-specialist h1 {
    font-size: 2.3rem;
    font-weight: 600;
}

.section-header-specialist p {
    font-size: 1.3rem;
}

.section-specialist {
    margin-top: 3%;
    padding: 20px;
}

.container_ {
    max-width: 1400px;
    margin: 0 auto;
}

.specialists-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.specialist-item {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    height: 100%;
    width: 100%;
}

.specialist-img {
    width: 40%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    display: block;
}

.specialist-card {
    margin-top: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-color: #183A77;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    height: 25%;
    width: 100%;
    min-height: 200px;
}

.specialist-card h1 {
    font-weight: 600;
    color: #E6E9F2;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.specialist-card p {
    font-weight: 500;
    font-size: 0.9rem;
    color: #E6E9F2;
    margin-bottom: 6px;
}

/* ============================================================================
   DEVELOPERS SECTION
============================================================================ */

.container-developers {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 15px;
    color: #1E2748;
}

.cards-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
}

.card-developer {
    background-color: #E6E9F2;
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
}

.developer-card-content {
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.developer-card-content.row-layout {
    flex-direction: row;
    align-items: center;
}

.name-position {
    padding-top: 10px;
}

.developer-img {
    max-height: 17em;
    object-fit: cover;
    border-radius: 10px;
}

.developer-card-content.row-layout .developer-img {
    width: 30%;
    height: 17em;
}

.card-developer h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-top: 0;
}

.card-developer span {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    font-weight: 500;
}

/* ============================================================================
   CONTACT SECTION
============================================================================ */

.section-contact {
    display: flex;
    align-items: stretch;
    margin-top: 5%;
    padding: 0 15px;
}

.section-contact .container {
    display: flex;
    width: 100%;
    max-width: 1400px;
    justify-content: center;
}

.contact-sidebar-image {
    width: 50%;
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

.contact-sidebar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.contact-form {
    width: 50%;
    background-color: #E6E9F2;
    border-radius: 10px;
    padding: 2rem 3rem;
    position: relative;
    z-index: 1;
}

.contact-form h1 {
    font-weight: 600;
    font-size: 2.3rem;
}

.contact-form p {
    font-weight: 400;
    font-size: 1rem;
}

.contact-form-content {
    margin-top: 7%;
}

.inputs-form {
    display: flex;
    flex-direction: column;
}

.name-input {
    width: 100%;
    border: 2px solid #C6C6C6;
    border-radius: 10px;
    background-color: #F3F4F6;
    margin-bottom: 1rem;
}

.name-input:focus {
    outline: none;
    border-color: #183A77;
}

.inputs-form p {
    display: flex;
    align-items: center;
    width: 80%;
    gap: 10px;
    margin-bottom: 1rem;
}

.inputs-form input[type="checkbox"] {
    appearance: none;
    width: 24px;
    height: 24px;
    border: 2px solid #C6C6C6;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    position: relative;
}

.inputs-form input[type="checkbox"]:checked {
    background-color: #183A77;
    border-color: #183A77;
}

.inputs-form input[type="checkbox"]:checked::before {
    content: "✔";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 16px;
}

.button-contact-container {
    display: flex;
}

.button-contact-container button {
    width: 100%;
    text-align: center;
    border-radius: 10px;
    border: none;
    background-color: #183A77;
    color: #E6E9F2;
    cursor: pointer;
    transition: background-color 0.3s ease;
    padding: 1rem;
}

.button-contact-container button:hover {
    background-color: #1F4E9F;
}

/* ============================================================================
   FOOTER STYLES
============================================================================ */

.footer-mobile {
    display: none;
    height: 43rem;
}

.footer-desktop {
    width: 100%;
    height: 40rem;
    background-color: #1E1E1E;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.footer a {
    color: white;
    text-decoration: none;
    margin: 5px 0;
    font-weight: 500;
}

.footer a:hover {
    text-decoration: none;
}

.footer .bi {
    font-size: 1.5rem;
    margin-right: 5px;
    color: white;
}

.footer-left-content p {
    font-weight: 400;
    font-size: 1rem;
}

.footer-left-content span {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 1rem;
}

.footer-center-content a {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 1rem;
}

.footer-container {
    max-width: 200px;
    margin: 0;
    justify-content: start;
    align-items: start;
}

.footer-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 60px;
}

.footer-logo {
    position: absolute;
    left: 0;
    width: 3rem;
}

.footer-text {
    color: #fff;
    font-size: 14px;
    text-align: center;
    width: 100%;
}

/* ============================================================================
   UTILITY CLASSES
============================================================================ */

.br {
    display: inline;
}

.br-mobile {
    display: none;
}

.navbar-placeholder {
    display: none;
}

.logo-container,
.button-container {
    z-index: 1;
}

.extra-tabs {
    display: none;
}

.consultation-button {
    background-color: black;
    color: white;
    font-size: 1.2rem;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    font-family: "Montserrat", sans-serif;
}

.button-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

/* Responsive Design Breakpoints */
@media (max-width: 1920px) {
    .image-box {
        width: 12rem;
    }
}

@media (max-width: 1440px) {
    .image-box {
        width: 11rem;
    }
}

@media (max-width: 1200px) {
    .image-box {
        width: 10rem;
    }
}

@media (max-width: 992px) {
    .image-box {
        width: 9rem;
    }
}

@media (max-width: 768px) {
    .image-container {
        flex-wrap: wrap;
    }

    .image-box {
        width: 48%;
    }
}

@media (max-width: 480px) {
    .image-box {
        width: 100%;
    }
}