/* ========================================
   FONT IMPORTS
   ======================================== */
@import url(https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap);

/* ========================================
   BASE STYLES
   ======================================== */

/**
 * HTML Root Element
 * Sets base font family, weight, and text color for the entire site
 */
html {
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-optical-sizing: auto;
    color: #e5f6ff
}

/**
 * Body Element
 * Sets the main background color for the page
 * min-width prevents layout from shrinking too much
 */
body {
    background: #0f172a;
    min-width: 320px
}

/**
 * Global Reset
 * Removes default margins and padding from all elements
 */
*,
body {
    margin: 0;
    padding: 0
}

/**
 * Box Sizing
 * Ensures padding and borders are included in element width calculations
 */
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

/**
 * Typography Reset
 * Removes default margins and padding from heading and paragraph elements
 */
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0
}

/**
 * Image Defaults
 * Ensures images are responsive and don't overflow containers
 */
img {
    display: block;
    max-width: 100%;
    width: auto;
    height: auto
}

/**
 * App Container
 * Main application wrapper with full viewport height
 */
.app {
    min-height: 100vh
}

/**
 * Layout Containers
 * Main container and main element positioning
 */
.app,
.main-container,
main {
    position: relative;
    width: 100%
}

/* ========================================
   HEADER SECTION
   ======================================== */

/**
 * Header Container
 * Fixed header that stays at the top of the page during scroll
 */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-width: 320px;
    z-index: 100;
    background: #0f172a;
    border-bottom: 1px solid hsla(0, 0%, 100%, .1)
}

.header-nav a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.header-nav a.active,
.header-nav a:hover {
    color: #0EA5E9
}

.header-container {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100px;
    padding: 0 45px;
    max-width: 1200px;
    margin: 0 auto
}

.header-container,
.header-container ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.header-container ul {
    gap: 40px
}

.header-container ul li {
    list-style: none
}

.header-logo,
.header-mobile {
    position: relative;
    z-index: 10
}

#burger-menu {
    width: 28px;
    height: 28px;
    position: relative;
    -webkit-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer
}

#burger-menu,
#burger-menu span {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg)
}

#burger-menu span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    border-radius: 20px;
    background: #fff;
    opacity: 1;
    left: 0;
    -webkit-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out
}

#burger-menu span:first-child {
    top: 0
}

#burger-menu span:nth-child(2),
#burger-menu span:nth-child(3) {
    top: 10px
}

#burger-menu span:nth-child(4) {
    top: 20px
}

#burger-menu.open span:first-child {
    top: 10px;
    width: 0;
    left: 50%;
    opacity: 0
}

#burger-menu.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

#burger-menu.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

#burger-menu.open span:nth-child(4) {
    top: 10px;
    width: 0;
    left: 50%;
    opacity: 0
}

@media (min-width:769px) {
    .header-mobile {
        display: none
    }
}

/* ========================================
   HERO SECTION
   ======================================== */

/**
 * Hero Section Container
 * Full viewport height hero section with background slider
 */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    overflow: hidden
}

@media (max-width:768px) {
    .hero-section {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding-top: 0;
    }
}

.hero-bg-slider {
    z-index: 0
}

.hero-bg-slide,
.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.hero-bg-slide {
    background-color: #1e293b;
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
    opacity: 0;
    -webkit-transition: opacity 1.5s ease-in-out, -webkit-transform 8s ease-out;
    transition: opacity 1.5s ease-in-out, -webkit-transform 8s ease-out;
    -o-transition: opacity 1.5s ease-in-out, transform 8s ease-out;
    transition: opacity 1.5s ease-in-out, transform 8s ease-out;
    transition: opacity 1.5s ease-in-out, transform 8s ease-out, -webkit-transform 8s ease-out;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1)
}

.hero-bg-slide.active {
    opacity: 1;
    -webkit-animation: zoomEffect 8s ease-out forwards;
    animation: zoomEffect 8s ease-out forwards
}

.hero-bg-slide.fade-out {
    opacity: 0
}

@-webkit-keyframes zoomEffect {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    to {
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }
}

@keyframes zoomEffect {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    to {
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(rgba(15, 23, 42, .8)), to(rgba(15, 23, 42, .4)));
    background: -webkit-linear-gradient(left, rgba(15, 23, 42, .8), rgba(15, 23, 42, .4));
    background: -o-linear-gradient(left, rgba(15, 23, 42, .8), rgba(15, 23, 42, .4));
    background: linear-gradient(90deg, rgba(15, 23, 42, .8), rgba(15, 23, 42, .4));
    z-index: 1
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    padding: 0 45px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto
}

@media (max-width:768px) {
    .hero-content {
        text-align: center;
        padding: 0 20px;
    }
}

.hero-tagline {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #00a7e1;
    text-transform: uppercase;
    margin-bottom: 40px;
    padding: 10px 20px;
    border: 1px solid #00a7e1;
    border-radius: 50px;
    background: rgba(0, 167, 225, .1)
}

@media (max-width:768px) {
    .hero-tagline {
        font-size: 12px;
        padding: 8px 16px;
        margin-bottom: 30px
    }
}

.hero-title {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 40px;
    color: #fff
}

@media (max-width:768px) {
    .hero-title {
        font-size: 28px;
        margin-bottom: 30px
    }

    .hero-title br {
        display: none
    }
}

.text-blue {
    background: linear-gradient(90deg, #38BDF8 0%, #34D399 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero-description {
    font-size: 24px;
    line-height: 1.6;
    color: #94a3b8;
    margin-bottom: 40px;
    font-weight: 400
}

@media (max-width:768px) {
    .hero-description {
        font-size: 14px;
        margin-bottom: 30px
    }

    .hero-description br {
        display: none
    }
}

.btn-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    margin-top: 40px
}

@media (max-width:768px) {
    .btn-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 12px
    }
}

.btn-wrapper .btn {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    cursor: pointer;
    border: 2px solid transparent
}

@media (max-width:768px) {
    .btn-wrapper .btn {
        width: 100%;
        max-width: 280px;
        text-align: center
    }
}

.btn-wrapper .btn-primary {
    background: #00a7e1;
    color: #fff;
    border-color: #00a7e1
}

.btn-wrapper .btn-primary:hover {
    background: #0095ca;
    border-color: #0095ca;
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-box-shadow: 0 6px 20px rgba(0, 167, 225, .4);
    box-shadow: 0 6px 20px rgba(0, 167, 225, .4)
}

.btn-wrapper .btn-secondary {
    background: transparent;
    color: #fff;
    border-color: hsla(0, 0%, 100%, .3)
}

.btn-wrapper .btn-secondary:hover {
    border-color: hsla(0, 0%, 100%, .6);
    background: hsla(0, 0%, 100%, .1);
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px)
}

.hero-tagline.text-animate {
    -webkit-animation: fadeInUp .8s ease-out .2s both;
    animation: fadeInUp .8s ease-out .2s both
}

.hero-title.text-animate {
    -webkit-animation: fadeInUp .8s ease-out .4s both;
    animation: fadeInUp .8s ease-out .4s both
}

.hero-description.text-animate {
    -webkit-animation: fadeInUp .8s ease-out .6s both;
    animation: fadeInUp .8s ease-out .6s both
}

.btn-scale-animate {
    -webkit-animation: fadeInUp .8s ease-out .8s both;
    animation: fadeInUp .8s ease-out .8s both
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(30px);
        transform: translateY(30px)
    }

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

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(30px);
        transform: translateY(30px)
    }

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

.value-proposition {
    position: relative;
    min-height: 500px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    overflow: hidden;
    padding: 120px 45px
}

@media (max-width:768px) {
    .value-proposition {
        padding: 60px 20px;
        min-height: 204px
    }
}

.value-proposition-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/value-proposition.png);
    background-size: cover;
    background-position: 0;
    z-index: 0
}

@media (max-width:768px) {
    .value-proposition-bg {
        background: url(../img/value-proposition-mobile.png);
        background-size: cover;
        background-position: 50%;
        background-repeat: no-repeat
    }
}

.value-proposition-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

@media (max-width:768px) {
    .value-proposition-content {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.value-proposition-box {
    max-width: 650px;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0
}

@media (max-width:768px) {
    .value-proposition-box {
        max-width: 100%;
        padding: 0;
        text-align: center
    }
}

.value-proposition-label {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #3186ff;
    margin: 0 0 24px;
    text-transform: uppercase
}

@media (max-width:768px) {
    .value-proposition-label {
        font-size: 12px;
    }
}

.value-proposition-title {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 32px;
    line-height: 1.2
}

@media (max-width:768px) {
    .value-proposition-title {
        font-size: 24px;
        margin: 0 0 24px
    }
}

.value-proposition-description {
    font-size: 20px;
    line-height: 1.8;
    color: #94a3b8;
    margin: 0;
    max-width: 600px
}

@media (max-width:768px) {
    .value-proposition-description {
        font-size: 12px;
        line-height: 1.7
    }
}

.core-capabilities {
    padding: 120px 45px;
    background: #0f172a
}

@media (max-width:768px) {
    .core-capabilities {
        padding: 60px 20px
    }
}

.core-capabilities-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center
}

.core-capabilities-container .section-label {
    margin-bottom: 16px;
    color: #3186ff;
    font-weight: 700;
    font-size: 20px;
}

@media (max-width:768px) {
    .core-capabilities-container .section-label {
        font-size: 12px;
    }
}

.core-capabilities-container .section-title {
    font-family: Outfit, sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px
}

@media (max-width:768px) {
    .core-capabilities-container .section-title {
        font-size: 24px;
        margin-bottom: 40px
    }
}

.capabilities-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding-top: 84px
}

.capabilities-grid:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 80%;
    max-width: 800px;
    height: 60px;
    background: url(../img/arrows.png) no-repeat top;
    background-size: contain
}

@media (max-width:768px) {
    .capabilities-grid:before {
        display: none
    }
}

@media (max-width:768px) {
    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding-top: 0
    }
}

.capability-card {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0;
    padding: 24px;
    background: rgba(30, 41, 59, .4);
    border: none;
    border-top: 1px solid hsla(0, 0%, 100%, .050980392156862744);
    border-radius: 12px;
    -webkit-box-shadow: 0 8px 10px -6px rgba(0, 0, 0, .10196078431372549), 0 20px 25px -5px rgba(0, 0, 0, .10196078431372549);
    box-shadow: 0 8px 10px -6px rgba(0, 0, 0, .10196078431372549), 0 20px 25px -5px rgba(0, 0, 0, .10196078431372549);
    text-align: center;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.capability-card:hover {
    -webkit-box-shadow: 0 12px 15px -6px rgba(0, 0, 0, .10196078431372549), 0 25px 30px -5px rgba(0, 0, 0, .10196078431372549);
    box-shadow: 0 12px 15px -6px rgba(0, 0, 0, .10196078431372549), 0 25px 30px -5px rgba(0, 0, 0, .10196078431372549);
    -webkit-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    transform: translateY(-4px)
}

@media (max-width:768px) {
    .capability-card {
        padding: 20px
    }
}

.capability-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 16px
}

@media (max-width:768px) {
    .capability-title {
        font-size: 18px;
        margin: 0 0 12px
    }
}

.capability-description {
    font-size: 16px;
    line-height: 1.6;
    color: #94a3b8;
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center
}

@media (max-width:768px) {
    .capability-description {
        font-size: 12px
    }
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about-section {
    padding: 120px 0 0;
    background: #0f172a
}

@media (max-width:768px) {
    .about-section {
        padding: 60px 0 0
    }
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 45px 120px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start
}

@media (max-width:968px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 60px
    }
}

@media (max-width:768px) {
    .about-container {
        padding: 0 20px 60px;
        gap: 40px
    }
}

@media (max-width:768px) {
    .about-left {
        text-align: center
    }
}

.about-left .section-label {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #3186ff;
    text-transform: uppercase;
    margin-bottom: 20px
}

@media (max-width:768px) {
    .about-left .section-label {
        font-size: 12px;
    }
}

.about-left .section-title {
    font-family: Outfit, sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.2
}

@media (max-width:768px) {
    .about-left .section-title {
        font-size: 24px;
        margin-bottom: 20px
    }
}

.about-left .about-description {
    font-size: 20px;
    line-height: 1.8;
    color: #94a3b8;
    font-weight: 400
}

@media (max-width:768px) {
    .about-left .about-description {
        font-size: 12px;
        line-height: 1.6
    }
}

.about-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 32px
}

@media (max-width:768px) {
    .about-right {
        gap: 24px
    }
}

.value-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 32px;
    background: rgba(30, 41, 59, .4);
    border: none;
    border-top: 1px solid hsla(0, 0%, 100%, .050980392156862744);
    border-radius: 16px;
    -webkit-box-shadow: 0 8px 10px -6px rgba(0, 0, 0, .10196078431372549), 0 20px 25px -5px rgba(0, 0, 0, .10196078431372549);
    box-shadow: 0 8px 10px -6px rgba(0, 0, 0, .10196078431372549), 0 20px 25px -5px rgba(0, 0, 0, .10196078431372549);
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.value-item:hover {
    -webkit-box-shadow: 0 12px 15px -6px rgba(0, 0, 0, .10196078431372549), 0 25px 30px -5px rgba(0, 0, 0, .10196078431372549);
    box-shadow: 0 12px 15px -6px rgba(0, 0, 0, .10196078431372549), 0 25px 30px -5px rgba(0, 0, 0, .10196078431372549);
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px)
}

@media (max-width:768px) {
    .value-item {
        gap: 16px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
        padding: 24px
    }
}

.value-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: rgba(14, 165, 233, .10196078431372549)
}

@media (max-width:768px) {
    .value-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        border-radius: 12px
    }
}

.value-icon img {
    width: 24px;
    height: 24px
}

@media (max-width:768px) {
    .value-icon img {
        width: 24px;
        height: 24px
    }
}

.value-icon.value-icon-blue,
.value-icon.value-icon-green,
.value-icon.value-icon-orange {
    background: rgba(14, 165, 233, .10196078431372549)
}

.value-content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.value-content .value-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px
}

@media (max-width:768px) {
    .value-content .value-title {
        font-size: 16px
    }
}

.value-content .value-text {
    font-size: 16px;
    line-height: 1.6;
    color: #94a3b8;
    font-weight: 400
}

@media (max-width:768px) {
    .value-content .value-text {
        font-size: 12px
    }
}

@media (max-width:768px) {
    #logo img {
        -webkit-transform: scale(.85);
        -ms-transform: scale(.85);
        transform: scale(.85);
        margin-left: -10px
    }

    .header-nav {
        position: fixed;
        top: 101px;
        left: 0;
        height: 0;
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        background: rgba(0, 0, 0, .6);
        -webkit-transition: all .3s ease;
        -o-transition: all .3s ease;
        transition: all .3s ease;
        overflow: hidden;
        z-index: 50;
        visibility: hidden
    }

    .header-nav.open {
        visibility: visible
    }

    .header-nav ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        padding: 12px 20px 14px;
        width: 100%;
        gap: 0;
        height: 0;
        opacity: 0;
        max-height: 0;
        background: #020617
    }

    .header-nav li {
        position: relative;
        width: 100%;
        text-align: left
    }

    .header-nav a {
        display: block;
        width: 100%;
        padding: 1.5rem 0;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: #d3e3fd
    }
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services-section {
    padding: 120px 0;
    background: #020617
}

@media (max-width:768px) {
    .services-section {
        padding: 60px 0
    }
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center
}

.services-container .section-label {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #3186ff;
    text-transform: uppercase;
    margin-bottom: 16px
}

@media (max-width:768px) {
    .services-container .section-label {
        font-size: 12px;
    }
}

.services-container .section-title {
    font-family: Outfit, sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px
}

@media (max-width:768px) {
    .services-container .section-title {
        font-size: 24px
    }
}

@media (max-width:768px) {
    .services-container {
        padding: 0 20px
    }
}

.title-underline {
    width: 60px;
    height: 4px;
    background: #0EA5E9;
    margin: 0 auto 60px
}

@media (max-width:768px) {
    .title-underline {
        margin: 0 auto 40px
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px
}

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

.service-card {
    padding: 40px 24px;
    background: rgba(30, 41, 59, .4);
    border: none;
    border-top: 1px solid hsla(0, 0%, 100%, .050980392156862744);
    border-radius: 16px;
    -webkit-box-shadow: 0 8px 10px -6px rgba(0, 0, 0, .10196078431372549), 0 20px 25px -5px rgba(0, 0, 0, .10196078431372549);
    box-shadow: 0 8px 10px -6px rgba(0, 0, 0, .10196078431372549), 0 20px 25px -5px rgba(0, 0, 0, .10196078431372549);
    text-align: left;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.service-card:hover {
    -webkit-box-shadow: 0 12px 15px -6px rgba(0, 0, 0, .10196078431372549), 0 25px 30px -5px rgba(0, 0, 0, .10196078431372549);
    box-shadow: 0 12px 15px -6px rgba(0, 0, 0, .10196078431372549), 0 25px 30px -5px rgba(0, 0, 0, .10196078431372549);
    -webkit-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    transform: translateY(-4px)
}

@media (max-width:768px) {
    .service-card {
        padding: 24px
    }
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.service-icon img {
    width: 32px;
    height: 32px
}

.service-icon.service-icon-blue {
    background: rgba(14, 165, 233, .10196078431372549)
}

.service-icon.service-icon-green {
    background: rgba(14, 165, 233, .1)
}

.service-icon.service-icon-orange {
    background: rgba(251, 146, 60, .1)
}

@media (max-width:768px) {
    .service-icon {
        width: 56px;
        height: 56px;
        border-radius: 14px;
        margin-bottom: 20px
    }

    .service-icon img {
        width: 28px;
        height: 28px
    }
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.3;
}

@media (max-width:768px) {
    .service-title {
        font-size: 16px
    }
}

.service-subtitle {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 24px;
    line-height: 1.4;
}

.service-subtitle.service-subtitle-blue {
    color: #0ea5e9
}

.service-subtitle.service-subtitle-green {
    color: #10b981
}

.service-subtitle.service-subtitle-orange {
    color: #fb923c
}

@media (max-width:768px) {
    .service-subtitle {
        font-size: 12px;
        margin: 0 0 20px
    }
}

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

.service-list li {
    font-size: 16px;
    color: #94a3b8;
    padding-left: 24px;
    margin-bottom: 12px;
    position: relative;
    line-height: 1.6
}

.service-list li:last-child {
    margin-bottom: 0
}

@media (max-width:768px) {
    .service-list li {
        font-size: 12px;
        padding-left: 20px;
        margin-bottom: 10px
    }
}

.service-card:first-child .service-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 16px;
    height: 16px;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAcCAYAAAByDd+UAAAACXBIWXMAABYlAAAWJQFJUiTwAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAEASURBVHgB7dFNEsEwFMDxl+zFCteyxRjcwA2kJ6gbYIzYuokjWNLa1T6P1MRnW2mTmjH6X3XeTN6vmQBU/VI1EQ7qItgxcfT1jEBJKYwgzu8TMo96zVEp4DumTTp1DqZi2oQvYiDBcwaaYFG/xZ2Appj6pHrGROjXV8FWHYaSMFV8Q7YOZyBxqIdIyPDUbS7AMaai6maPWPwXlyVMHMbgGItBQExejMRn6+PEJXYFpfTSD0r+itpgqusbLvccKJ2kLqGUR52GZ4vdQBOUENggQhsssCfQBLXF3sBCaA4sEcyF5sRSQSO0AJYJZqIFsY9gImqBGadQtgqQLQMOVX/fGWQGu22LK6/gAAAAAElFTkSuQmCC) no-repeat 50%;
    background-size: contain
}

.service-card:nth-child(2) .service-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 16px;
    height: 16px;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAcCAYAAAByDd+UAAAACXBIWXMAABYlAAAWJQFJUiTwAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAERSURBVHgB7dQ9DoIwGIDhr7A49kgkRl3dHdQb6G60oLveQIxxd1N0UG/E6CKVKoLIX6HtYMI78dP2CaQpQJ3kECgMO4s+wIOAhvZuazpWCgaYHT5AyHbb06ESMIF90tBKOpiJBUkFizAAakoDeTC3Q4gUkBdjVyiaZC39FwaAvnI7kw0owEIQn6w1UDqIBukDHrQsxtJeXxbDWA8bH60RSMZeoP8ifWFEl/g8n8nE3qBHzcx5nkd+URGMpd9312ujZyD/6DHS51Oj0W/CfXu5iWKsaJceCDtkZzlD9/6CXREsBvKhYhhL/74p/L2CWAIsj5bDUkF+tDyWCRaj1bBcMButjnHHdi92TIodxVDdX/QEFBO0tE+pL+4AAAAASUVORK5CYII=) no-repeat 50%;
    background-size: contain
}

.service-card:nth-child(3) .service-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 16px;
    height: 16px;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAcCAYAAAByDd+UAAAACXBIWXMAABYlAAAWJQFJUiTwAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAD8SURBVHgB7dPbEYIwEAXQG/4wFmcHijZgB2IF2oCiHdiJJViEBv9cs5kBHzwMJDjjyP2B2U1yYJIAfX4p160cq0Se0kSusppAR2HsBuzwkHYyUlEnYAHLTIG1d7AKy1F8EQOJpTfQBpOzS+wFtMX4NchqfHT1ET7yZHSEccwfaigBYZIV9VdMwqnawzNm1jaX8gnj8CLpJpzDM2ZAIszLxwerazJY+MQMeNPNqnm6F7+jLhjH7OF5M4wDQYuqQboXh1G6dMVy0AYVgg5EYgQH7AW0QV2xAtgKbYCVgo3QhlglaIW2wGrBWrQl9hEsRR0w6zCqtpKUfqLP3+cOlsW1k2/AEkQAAAAASUVORK5CYII=) no-repeat 50%;
    background-size: contain
}

/* ========================================
   NETWORK SECTION
   ======================================== */

.network-section {
    position: relative;
    min-height: 600px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 120px 45px;
    overflow: hidden;
    background: #0f172a
}

@media (max-width:768px) {
    .network-section {
        padding: 60px 20px;
        min-height: 500px
    }
}

.network-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/network-map.webp) no-repeat 100%;
    background-size: contain;
    opacity: .6;
    z-index: 0
}

@media (max-width:768px) {
    .network-bg {
        display: none
    }
}

.network-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto
}

@media (max-width:768px) {
    .network-content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 40px
    }
}

.network-map-mobile {
    display: none
}

@media (max-width:768px) {
    .network-map-mobile {
        display: block;
        width: 100%;
        max-width: 500px;
        margin: 0 auto
    }

    .network-map-mobile img {
        width: 100%;
        height: auto;
        display: block
    }
}

.network-text {
    max-width: 600px
}

@media (max-width:768px) {
    .network-text {
        max-width: 100%;
        text-align: center
    }
}

.network-text .section-label {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #3186ff;
    text-transform: uppercase;
    margin-bottom: 16px
}

@media (max-width:768px) {
    .network-text .section-label {
        font-size: 12px;
    }
}

.network-text .section-title {
    font-family: Outfit, sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 24px;
    line-height: 1.2
}

@media (max-width:768px) {
    .network-text .section-title {
        font-size: 24px;
        margin: 0 0 20px
    }
}

.title-underline-left {
    width: 60px;
    height: 4px;
    background: #0EA5E9;
    margin: 0 0 32px
}

@media (max-width:768px) {
    .title-underline-left {
        margin: 0 auto 24px
    }
}

.network-description {
    font-size: 16px;
    line-height: 1.8;
    color: #94a3b8;
    margin: 0
}

@media (max-width:768px) {
    .network-description {
        font-size: 15px;
        line-height: 1.7
    }
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact-section {
    padding: 120px 45px;
    background: #020617
}

@media (max-width:768px) {
    .contact-section {
        padding: 60px 20px
    }
}

.contact-container {
    max-width: 960px;
    margin: 0 auto;
    text-align: center
}

.contact-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px
}

@media (max-width:768px) {
    .contact-title {
        font-size: 32px
    }
}

.contact-subtitle {
    font-size: 16px;
    color: #94a3b8;
    margin: 0 0 60px
}

@media (max-width:768px) {
    .contact-subtitle {
        font-size: 15px;
        margin: 0 0 40px
    }
}

.contact-form {
    text-align: left
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px
}

@media (max-width:768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px
    }
}

.form-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.form-group:last-child {
    margin-bottom: 32px
}

@media (max-width:768px) {
    .form-group:last-child {
        margin-bottom: 24px
    }
}

.form-group label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #94a3b8;
    margin-bottom: 12px;
    text-transform: uppercase
}

.form-group label .required {
    color: #ef4444;
    margin-left: 2px
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px 20px;
    background: rgba(30, 41, 59, .4);
    border: 1px solid hsla(0, 0%, 100%, .10196078431372549);
    border-radius: 12px;
    color: #fff;
    font-size: 15px;
    font-family: inherit;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.form-group input::-webkit-input-placeholder,
.form-group select::-webkit-input-placeholder,
.form-group textarea::-webkit-input-placeholder {
    color: #64748b
}

.form-group input::-moz-placeholder,
.form-group select::-moz-placeholder,
.form-group textarea::-moz-placeholder {
    color: #64748b
}

.form-group input::-ms-input-placeholder,
.form-group select::-ms-input-placeholder,
.form-group textarea::-ms-input-placeholder {
    color: #64748b
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
    color: #64748b
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0ea5e9;
    background: rgba(30, 41, 59, .6)
}

@media (max-width:768px) {

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 18px;
        font-size: 14px
    }
}

.form-group .custom-dropdown {
    position: relative;
    cursor: pointer
}

.form-group .custom-dropdown .dropdown-selected {
    padding: 16px 20px;
    background: rgba(30, 41, 59, .4);
    border: 1px solid hsla(0, 0%, 100%, .10196078431372549);
    border-radius: 12px;
    color: #94a3b8;
    font-size: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.form-group .custom-dropdown .dropdown-selected:after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url('../img/form-arrowdown.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transition: -webkit-transform .3s ease;
    -o-transition: transform .3s ease;
    transition: transform .3s ease;
    transition: transform .3s ease, -webkit-transform .3s ease;
}

@media (max-width:768px) {
    .form-group .custom-dropdown .dropdown-selected {
        padding: 14px 18px;
        font-size: 14px
    }
}

.form-group .custom-dropdown.active .dropdown-selected {
    border-color: #0ea5e9;
    background: rgba(30, 41, 59, .6)
}

.form-group .custom-dropdown.active .dropdown-selected:after {
    -webkit-transform: translateY(-50%) rotate(180deg);
    -ms-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
}

.form-group .custom-dropdown.selected .dropdown-selected {
    color: #fff
}

.form-group .custom-dropdown .dropdown-options {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #0f172a;
    border: 1px solid hsla(0, 0%, 100%, .10196078431372549);
    border-radius: 12px;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    z-index: 100;
    -webkit-box-shadow: 0 8px 16px rgba(0, 0, 0, .3);
    box-shadow: 0 8px 16px rgba(0, 0, 0, .3)
}

.form-group .custom-dropdown.active .dropdown-options {
    max-height: 300px;
    opacity: 1;
    visibility: visible
}

.form-group .custom-dropdown .dropdown-option {
    padding: 14px 20px;
    color: #fff;
    font-size: 15px;
    border-bottom: 1px solid hsla(0, 0%, 100%, .10196078431372549);
    -webkit-transition: background .2s ease;
    -o-transition: background .2s ease;
    transition: background .2s ease
}

.form-group .custom-dropdown .dropdown-option:last-child {
    border-bottom: none
}

.form-group .custom-dropdown .dropdown-option:hover {
    background: #1e293b
}

@media (max-width:768px) {
    .form-group .custom-dropdown .dropdown-option {
        padding: 12px 18px;
        font-size: 14px
    }
}

.form-group textarea {
    resize: none;
    height: 116px
}

.submit-btn {
    width: 100%;
    padding: 18px 32px;
    margin-top: 48px;
    background: #0ea5e9;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.submit-btn:hover {
    background: #0284c7;
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-box-shadow: 0 10px 20px rgba(14, 165, 233, .3);
    box-shadow: 0 10px 20px rgba(14, 165, 233, .3)
}

.submit-btn:active {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0)
}

@media (max-width:768px) {
    .submit-btn {
        padding: 16px 28px;
        font-size: 15px
    }
}

.toast {
    position: fixed;
    top: -100px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background: #1e293b;
    color: #fff;
    padding: 16px 32px;
    border-radius: 8px;
    border: 1px solid hsla(0, 0%, 100%, .10196078431372549);
    -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, .4);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .4);
    z-index: 9999;
    -webkit-transition: top .4s ease;
    -o-transition: top .4s ease;
    transition: top .4s ease;
    font-size: 15px;
    font-weight: 500;
    min-width: 300px;
    text-align: center
}

.toast.show {
    top: 40px
}

.toast.error {
    background: #7f1d1d;
    border-color: #ef4444;
    color: #fff
}

.toast.success {
    background: #14532d;
    border-color: #10b981;
    color: #fff
}

.toast .toast-message {
    display: block
}

@media (max-width:768px) {
    .toast {
        min-width: auto;
        max-width: calc(100% - 40px);
        padding: 14px 24px;
        font-size: 14px;
        top: -100px
    }

    .toast.show {
        top: 20px
    }
}

/* ========================================
   FOOTER SECTION
   ======================================== */

.footer {
    background: #0f172a;
    padding: 80px 0 40px;
    color: #94a3b8
}

@media (max-width:768px) {
    .footer {
        padding: 60px 0 30px
    }
}

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

@media (max-width:768px) {
    .footer-container {
        padding: 0 20px
    }
}

.footer-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid hsla(0, 0%, 100%, .1)
}

@media (max-width:968px) {
    .footer-top {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 40px
    }
}

.footer-brand {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    max-width: 460px
}

@media (max-width:968px) {
    .footer-brand {
        max-width: 100%
    }
}

.footer-logo {
    margin-bottom: 16px
}

.footer-logo img {
    height: 40px;
    width: auto
}

.footer-tagline {
    font-size: 16px;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 32px
}

.footer-contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px
}

.contact-item,
.footer-contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.contact-item {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.6
}

.footer-icon {
    width: 24px;
    height: 24px;
    display: block;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-top: 2px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 24px;
    flex: 0 0 24px;
}

.contact-item svg {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-top: 2px
}

.contact-item span,
.contact-item a {
    color: #94a3b8;
    text-decoration: none;
    -webkit-transition: color .3s ease;
    -o-transition: color .3s ease;
    transition: color .3s ease
}

.contact-item a:hover {
    color: #0EA5E9
}

.footer-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 120px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto
}

@media (max-width:968px) {
    .footer-links {
        gap: 60px;
        width: 100%
    }
}

@media (max-width:768px) {
    .footer-links {
        gap: 40px
    }
}

.footer-column {
    width: 200px
}

.footer-column h3 {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    letter-spacing: .5px;
    margin-bottom: 24px
}

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

.footer-column ul li {
    margin-bottom: 12px
}

.footer-column ul li a {
    font-size: 14px;
    color: #94a3b8;
    text-decoration: none;
    -webkit-transition: color .3s ease;
    -o-transition: color .3s ease;
    transition: color .3s ease
}

.footer-column ul li a:hover {
    color: #00a7e1
}

@media (max-width:968px) {
    .footer-column {
        width: 100%
    }
}

.footer-bottom {
    padding-top: 40px;
    text-align: center
}

.footer-bottom p {
    font-size: 14px;
    color: #64748b;
    letter-spacing: .5px
}

@media (max-width:768px) {
    .footer-bottom p {
        font-size: 10px;
    }
}

/* ========================================
   TERMS OF SERVICE / PRIVACY POLICY / LEGAL PAGES SECTION
   ======================================== */

/**
 * Terms Section Container
 * Main container for all legal pages (Terms of Service, Privacy Policy, Cookie Policy, Legal Disclaimer)
 * Provides consistent styling and background images across all legal pages
 */
.terms-section {
    position: relative;
    padding: 140px 45px 120px;
    background: #0f172a;
    min-height: calc(100vh - 100px);
    overflow: hidden;
}

/**
 * Terms Section Background Images
 * Decorative background images positioned on left and right sides
 * - Right image (web-bg-image-2.png): Positioned on upper right, 50% visible
 * - Left image (web-bg-image-1.png): Positioned on lower left, 50% visible
 */
/**
 * Terms Section Background Images
 * Decorative background images positioned on left and right sides
 * - Right image (web-bg-image-2.png): Positioned on upper right, 50% visible
 * - Left image (web-bg-image-1.png): Positioned on lower left, 50% visible
 */
.terms-section::before {
    content: '';
    position: absolute;
    top: 150px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: url('../img/web-bg-image-2.webp') no-repeat top right;
    background-size: contain;
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}

.terms-section::after {
    content: '';
    position: absolute;
    bottom: 200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: url('../img/web-bg-image-1.webp') no-repeat bottom left;
    background-size: contain;
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}

/**
 * Terms Section - Mobile Responsive
 * Adjusts padding and background images for mobile devices
 */
@media (max-width:768px) {
    .terms-section {
        padding: 140px 20px 60px;
    }

    .terms-section::before,
    .terms-section::after {
        width: 300px;
        height: 300px;
        opacity: 0.2;
    }
}

/**
 * Terms Container
 * Content wrapper that ensures proper z-index layering above background images
 */
.terms-container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

/**
 * Terms Title
 * Main page title (e.g., "Privacy Policy", "Terms of Service")
 */
.terms-title {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px;
    text-align: left;
    line-height: 1.2;
}

@media (max-width:768px) {
    .terms-title {
        font-size: 24px;
        margin: 0 0 20px;
    }
}

/**
 * Terms Update Date
 * Date stamp showing when the document was last updated
 * Used primarily on Privacy Policy page
 */
.terms-update-date {
    text-align: left;
    color: #94a3b8;
    margin-bottom: 60px;
    font-size: 20px;
}

@media (max-width:768px) {
    .terms-update-date {
        font-size: 12px;
    }
}

/**
 * Terms Content Container
 * Wrapper for all terms items/sections
 */
.terms-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (max-width:768px) {
    .terms-content {
        gap: 32px;
    }
}

/**
 * Terms Item
 * Individual section/item within the terms content
 */
.terms-item {
    padding: 0;
}

/**
 * Terms Item Title
 * Section heading (e.g., "1. Introduction", "2. Regional Compliance Statement")
 */
.terms-item-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.3;
}

@media (max-width:768px) {
    .terms-item-title {
        font-size: 12px;
        margin: 0 0 12px;
    }
}

/**
 * Terms Item Text
 * Body text within terms sections
 * Paragraphs are indented from section titles
 */
.terms-item-text {
    font-size: 20px;
    line-height: 1.8;
    color: #94a3b8;
    margin: 0 0 16px;
    font-weight: 400;
    padding-left: 20px;
}

.terms-item-text.indented {
    padding-left: 40px;
}

.terms-item-text:last-child {
    margin-bottom: 0;
}

@media (max-width:768px) {
    .terms-item-text {
        font-size: 12px;
        line-height: 1.7;
        margin-bottom: 12px;
        padding-left: 16px;
    }

    .terms-item-text.indented {
        padding-left: 30px;
    }
}

/**
 * Terms Content Links
 * Styled links within terms content (e.g., email addresses, website URLs)
 */
.terms-item-text a {
    color: #00a7e1;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.terms-item-text a:hover {
    color: #0095ca;
}

/**
 * Terms Content Lists
 * Bulleted lists within terms sections (e.g., list of cookie types, information collected)
 */
ul.terms-item-text {
    margin: 16px 0 0 0;
    padding-left: 70px;
    list-style-type: disc;
}

@media (max-width:768px) {
    ul.terms-item-text {
        padding-left: 50px;
    }
}

/**
 * Terms Content List Items
 * Individual list items within terms content lists
 */
ul.terms-item-text li {
    margin-bottom: 12px;
    line-height: 1.8;
}

ul.terms-item-text li:last-child {
    margin-bottom: 0;
}

@media (max-width:768px) {
    ul.terms-item-text li {
        margin-bottom: 10px;
        line-height: 1.7;
    }
}

/**
 * Terms Item Spaced
 * Additional spacing modifier for paragraphs that need extra top margin
 */
.terms-item-text.terms-item-spaced {
    margin-top: 16px;
}