:root {
    --dmani-dark: #0b2a3d;
    --dmani-navy: #0a1f36;
    --dmani-cyan: #2fd0e0;
    --dmani-cyan-2: #1fc3e0;
    --dmani-text-light: #eaf4f7;
}

html {
    overflow-x: hidden;
}

body {
    font-family:
        ui-sans-serif,
        system-ui,
        -apple-system,
        sans-serif;
    color: #1c2b33;
    overflow-x: hidden;
}

/* ==================== NAVBAR ==================== */
.site-navbar {
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    transition: background-color 0.25s ease-in-out, box-shadow 0.25s ease-in-out, padding 0.25s ease-in-out;
}

.inner-page .site-navbar {
    background: linear-gradient(to bottom right, #020617, #082f49, #083344);
}

.site-navbar.nav-scrolled {
    background: rgba(10, 31, 54, 0.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 8px 24px -12px rgba(2, 6, 23, 0.5);
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
}

.inner-page main.content {
    padding-top: 70px;
}

.site-navbar .navbar-brand {
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.08em;
    font-size: 1.1rem;
}

.site-navbar .nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.92rem;
    font-weight: 500;
    margin: 0 0.6rem;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link.active {
    color: #fff;
}

.btn-cyan {
    background: var(--dmani-cyan);
    border-color: var(--dmani-cyan);
    color: #04303a;
    font-weight: 600;
}

.btn-cyan:hover {
    background: var(--dmani-cyan-2);
    border-color: var(--dmani-cyan-2);
    color: #04303a;
}

.lang-switch-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    font-size: 0.8rem;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
}

.lang-switch-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

/* ==================== HERO ==================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(180deg,
            rgba(6, 26, 40, 0.55) 0%,
            rgba(6, 26, 40, 0.75) 60%,
            rgba(6, 26, 40, 0.92) 100%),
        url("https://images.unsplash.com/photo-1527569284971-f1616b39734b?q=80&w=1920&auto=format&fit=crop") center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding-top: 6rem;
    padding-bottom: 5rem;
}

.hero-eyebrow {
    display: inline-block;
    border-radius: 999px;
    border: 1px solid rgba(165, 243, 252, 0.3);
    background: rgba(165, 243, 252, 0.05);
    padding: 0.25rem 1rem;
    letter-spacing: 0.3em;
    font-size: 0.75rem;
    font-weight: 600;
    color: #a5f3fc;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.hero-title {
    font-weight: 400;
    font-size: clamp(2.2rem, 5vw, 3.75rem);
    line-height: 1.15;
}

.hero-title .fw-title-strong {
    font-weight: 700;
    color: var(--dmani-cyan);
}

.hero-lead {
    max-width: 620px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
}

.scroll-down-indicator {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
}

/* ---- Hero bubbles ---- */
.hero-bubbles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.hero-bubble {
    position: absolute;
    bottom: -8%;
    animation: bubble-rise linear infinite;
}

.hero-bubble i {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    background: radial-gradient(circle at 32% 26%,
            rgba(255, 255, 255, 0.9) 0%,
            rgba(255, 255, 255, 0.35) 16%,
            rgba(210, 250, 255, 0.12) 40%,
            rgba(180, 240, 250, 0.05) 70%,
            rgba(180, 240, 250, 0.15) 100%);
    box-shadow:
        inset -2px -2px 4px rgba(9, 60, 75, 0.25),
        inset 1px 1px 2px rgba(255, 255, 255, 0.6),
        0 0 6px rgba(180, 245, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.35);
    animation: bubble-sway ease-in-out infinite;
}

.hero-bubble i::after {
    content: "";
    position: absolute;
    top: 18%;
    left: 22%;
    width: 28%;
    height: 16%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    filter: blur(0.5px);
}

@keyframes bubble-rise {
    0% {
        transform: translateY(0) scale(0.4);
        opacity: 0;
    }

    6% {
        opacity: 0.9;
        transform: translateY(-8vh) scale(1);
    }

    80% {
        opacity: 0.55;
    }

    96% {
        opacity: 0.15;
    }

    100% {
        transform: translateY(-112vh) scale(1.08);
        opacity: 0;
    }
}

@keyframes bubble-sway {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(8px);
    }

    50% {
        transform: translateX(-6px);
    }

    75% {
        transform: translateX(10px);
    }
}

.hero-section>.container {
    position: relative;
    z-index: 2;
}

/* ==================== TICKER / ANNOUNCEMENT BAR ==================== */
.announce-bar {
    background: linear-gradient(90deg,
            var(--dmani-cyan-2),
            var(--dmani-cyan));
    color: #04303a;
    font-weight: 600;
    font-size: 0.9rem;
}

.announce-bar .btn-dark-pill {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    gap: 0.5rem;
    background: #020617;
    color: #ecfeff;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.625rem 1.5rem;
    border: none;
    white-space: nowrap;
    box-shadow:
        0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.15s ease-in-out;
    text-decoration: none;
}

.announce-bar .btn-dark-pill:hover {
    background: #1e293b;
    color: #ecfeff;
}

.announce-inner {
    margin-left: auto;
    margin-right: auto;
    max-width: 1280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    text-align: center;
}

@media (min-width: 576px) {
    .announce-inner {
        flex-direction: row;
        gap: 1.5rem;
        text-align: left;
    }
}

/* ==================== SOURCE / FEATURE SPLIT SECTIONS ==================== */
.split-media {
    min-height: 320px;
    background-size: cover;
    background-position: center;
}

.split-media.media-source {
    background-image:
        linear-gradient(135deg,
            rgba(10, 36, 54, 0.05),
            rgba(18, 58, 82, 0.05)),
        url("../img/4.png");
}

.split-media.media-bottle {
    background-image:
        linear-gradient(135deg,
            rgba(10, 36, 54, 0.05),
            rgba(18, 58, 82, 0.05)),
        url("../img/7.png");
}

.split-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 2rem;
}

@media (min-width: 768px) {
    .split-text {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

@media (min-width: 992px) {
    .split-text {
        padding-left: 6rem;
        padding-right: 6rem;
    }
}

.eyebrow-label {
    letter-spacing: 0.3em;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #22d3ee;
}

.split-text h3 {
    margin-top: 1rem;
    font-weight: 600;
    font-size: 1.875rem;
    color: #0f172a;
}

@media (min-width: 768px) {
    .split-text h3 {
        font-size: 2.25rem;
    }
}

.split-text p {
    margin-top: 1.25rem;
    max-width: 28rem;
    font-size: 1rem;
    line-height: 1.75;
    color: #475569;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    color: #0891b2;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.875rem;
}

.link-arrow i {
    transition: transform 0.15s ease-in-out;
}

.link-arrow:hover {
    color: #0891b2;
}

.link-arrow:hover i {
    transform: translateX(4px);
}

/* ==================== JOURNEY TIMELINE ==================== */
.journey-section {
    background: linear-gradient(to bottom right, #082f49, #172554, #164e63);
    color: #fff;
    padding: 6rem 0;
}

.journey-section .section-eyebrow {
    color: #67e8f9;
}

.journey-section h2 {
    margin-top: 0.75rem;
    font-weight: 300;
    font-size: clamp(1.9rem, 4vw, 3rem);
}

.journey-section h2 strong {
    font-weight: 600;
}

.journey-grid {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1.5rem;
    row-gap: 3rem;
    list-style: none;
    padding: 0;
}

@media (min-width: 768px) {
    .journey-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .journey-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.journey-step {
    text-align: center;
}

.journey-step-num {
    display: block;
    color: rgba(103, 232, 249, 0.8);
    font-weight: 300;
    font-family: ui-monospace, monospace;
    font-size: 1.75rem;
}

.journey-step h6 {
    margin-top: 0.75rem;
    font-weight: 600;
    font-size: 1.05rem;
}

.journey-step p {
    margin-top: 0.5rem;
    color: rgba(236, 254, 255, 0.6);
    font-size: 0.85rem;
}

/* ==================== FEATURE CARDS ==================== */
.features-section {
    padding: 5.5rem 0;
}

.section-eyebrow {
    letter-spacing: 0.3em;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #06b6d4;
    text-align: center;
}

.section-heading-wrap {
    margin: 0 auto;
    max-width: 42rem;
    text-align: center;
}

.section-title {
    margin-top: 0.75rem;
    text-align: center;
    font-weight: 600;
    font-size: clamp(1.9rem, 3.5vw, 3rem);
    color: #0f172a;
}

.section-title .text-cyan {
    color: #0891b2;
}

.section-sub {
    text-align: center;
    color: #475569;
    max-width: 560px;
    margin: 1.25rem auto 0;
}

.features-grid {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 576px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    background: rgba(248, 250, 252, 0.5);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: left;
    border: 1px solid #f1f5f9;
    height: 100%;
    transition:
        transform 0.2s ease-in-out,
        border-color 0.2s ease-in-out,
        box-shadow 0.2s ease-in-out;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: #a5f3fc;
    box-shadow: 0 20px 25px -5px rgba(8, 51, 68, 0.05);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 1rem;
    background: rgba(6, 182, 212, 0.1);
    color: #0891b2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 1.5rem;
    font-size: 1.5rem;
    transition:
        background-color 0.2s ease-in-out,
        color 0.2s ease-in-out;
}

.feature-card:hover .feature-icon {
    background: #06b6d4;
    color: #fff;
}

.feature-card h6 {
    font-weight: 600;
    font-size: 1.05rem;
    color: #0f172a;
}

.feature-card p {
    margin-top: 0.75rem;
    color: #475569;
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ==================== STATS ==================== */
.stats-section {
    position: relative;
    background: url("https://images.unsplash.com/photo-1621466214218-1cabdcdcc6a1?q=80&w=1600&auto=format&fit=crop") center/cover;
    color: #fff;
    padding: 6rem 0;
}

.stats-overlay {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.stats-inner {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    max-width: 1280px;
    padding: 0 1.5rem;
}

.stats-heading-wrap {
    margin: 0 auto;
    max-width: 42rem;
    text-align: center;
}

.stats-heading-wrap .section-eyebrow {
    color: #0891b2;
}

.stats-heading-wrap h2 {
    margin-top: 0.75rem;
    font-weight: 300;
    font-size: clamp(1.9rem, 4vw, 3rem);
}

.stats-heading-wrap h2 strong {
    font-weight: 600;
}

.stats-grid {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    border-left: 2px solid rgba(34, 211, 238, 0.4);
    padding-left: 1.25rem;
}

.stat-num {
    font-weight: 700;
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    color: #fff;
    margin: 0;
}

.stat-num small {
    margin-left: 0.25rem;
    font-size: 1rem;
    font-weight: 400;
    color: rgba(165, 243, 252, 0.8);
}

.stat-label {
    margin: 0.5rem 0 0;
    letter-spacing: 0.05em;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: rgba(207, 250, 254, 0.7);
}

/* ==================== GALLERY ==================== */
.gallery-section {
    padding: 5.5rem 0;
    background: #f7fafb;
}

.gallery-img {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    min-height: 260px;
}

.gallery-img.tall {
    min-height: 540px;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.65), transparent);
    color: #fff;
    padding: 1rem;
}

.gallery-caption .tag {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--dmani-cyan);
    display: block;
}

/* ==================== MAP / FIND US ==================== */
.find-us-section {
    background: #020617;
    color: #fff;
    text-align: center;
}

.find-us-inner {
    margin: 0 auto;
    max-width: 1280px;
    padding: 4rem 1.5rem;
    text-align: center;
}

.findus-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 999px;
    border: 1px solid rgba(165, 243, 252, 0.3);
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #a5f3fc;
}

.findus-badge i {
    font-size: 0.85rem;
}

.find-us-inner h2 {
    margin-top: 1rem;
    font-weight: 300;
    font-size: clamp(1.7rem, 3.5vw, 2.25rem);
    color: #fff;
}

.find-us-inner p {
    margin: 0.75rem auto 0;
    max-width: 36rem;
    font-size: 0.9rem;
    line-height: 1.75;
    color: rgba(236, 254, 255, 0.7);
}

.find-us-section iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
}

/* ==================== FOOTER / CTA ==================== */
.footer-cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom right, #020617, #082f49, #083344);
    color: #fff;
    padding-top: 6rem;
    text-align: center;
}

.footer-cta-inner {
    margin: 0 auto;
    max-width: 56rem;
    padding: 0 1.5rem;
    text-align: center;
}

.footer-cta .droplet-icon {
    color: #0891b2;
    font-size: 2.25rem;
}

.footer-cta h2 {
    margin-top: 1.25rem;
    font-weight: 300;
    font-size: clamp(1.9rem, 4vw, 2.95rem);
}

.footer-cta h2 strong {
    font-weight: 600;
    color: #0891b2;
}

.footer-cta-text {
    margin: 1.25rem auto 0;
    max-width: 32rem;
    color: rgba(236, 254, 255, 0.6);
}

.footer-shop-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    border-radius: 999px;
    background: #22d3ee;
    padding: 1rem 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #020617;
    box-shadow: 0 20px 25px -5px rgba(6, 182, 212, 0.3);
    text-decoration: none;
    transition: background-color 0.15s ease-in-out;
}

.footer-shop-btn:hover {
    background: #0891b2;
    color: #020617;
}

.footer-cta .social-icons {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.footer-cta .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 999px;
    border: 1px solid rgba(165, 243, 252, 0.2);
    color: rgba(207, 250, 254, 0.8);
    font-size: 1.1rem;
    transition: all 0.15s ease-in-out;
}

.footer-cta .social-icons a:hover {
    border-color: #0891b2;
    background: rgba(103, 232, 249, 0.1);
    color: #a5f3fc;
}

.footer-bottom-wrap {
    margin-top: 4rem;
    border-top: 1px solid rgba(165, 243, 252, 0.1);
}

.footer-bottom {
    margin: 0 auto;
    max-width: 1280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1.5rem;
    font-size: 0.75rem;
    color: rgba(236, 254, 255, 0.5);
}

@media (min-width: 576px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-bottom a {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: inherit;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #a5f3fc;
}

/* ==================== RTL SUPPORT ==================== */
html[dir="rtl"] body {
    font-family:
        ui-sans-serif,
        system-ui,
        -apple-system,
        sans-serif;
}

html[dir="rtl"] .link-arrow i,
html[dir="rtl"] .btn i.bi-arrow-right {
    transform: scaleX(-1);
}

@media (max-width: 991.98px) {
    .site-navbar {
        background: rgba(10, 31, 54, 0.95);
    }

    .hero-section {
        padding-top: 5.5rem;
    }

    .inner-page main.content {
        padding-top: 72px;
    }
}

/* ==================== LEGAL PAGE HEADER ==================== */
.legal-hero {
    position: relative;
    overflow: hidden;
    background: url("https://images.unsplash.com/photo-1621466214218-1cabdcdcc6a1?q=80&w=1600&auto=format&fit=crop") center/cover;
    color: #fff;
    padding: 5.5rem 0 4.5rem;
}

.legal-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.legal-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at 15% 20%, rgba(47, 208, 224, 0.18), transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(34, 211, 238, 0.12), transparent 45%);
    pointer-events: none;
}

.legal-hero-inner {
    position: relative;
    z-index: 2;
}

.legal-hero .findus-badge {
    margin-bottom: 1rem;
}

.legal-hero h1 {
    font-weight: 300;
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin: 0;
}

.legal-hero p {
    margin: 0.75rem 0 0;
    max-width: 42rem;
    color: rgba(236, 254, 255, 0.65);
    font-size: 0.95rem;
}

.legal-breadcrumb {
    margin-top: 1.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: rgba(236, 254, 255, 0.55);
}

.legal-breadcrumb a {
    color: rgba(165, 243, 252, 0.9);
    text-decoration: none;
}

.legal-breadcrumb a:hover {
    color: #fff;
}

/* ==================== LEGAL PAGE BODY ==================== */
.theme4-page-content {
    padding: 4rem 0 5rem;
    background: #f7fafb;
}

.legal-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
}

@media (min-width: 992px) {
    .legal-layout {
        grid-template-columns: 260px 1fr;
    }
}

/* Sidebar nav */
.legal-sidebar {
    position: sticky;
    top: 1.5rem;
    display: none;
}

@media (min-width: 992px) {
    .legal-sidebar {
        display: block;
    }
}

.legal-sidebar-card {
    background: #fff;
    border: 1px solid #eef2f5;
    border-radius: 1.25rem;
    padding: 1.5rem;
    box-shadow: 0 12px 24px -12px rgba(8, 51, 68, 0.08);
}

.legal-sidebar-title {
    letter-spacing: 0.2em;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #0891b2;
    margin: 0 0 1rem;
}

.legal-sidebar-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 60vh;
    overflow-y: auto;
}

.legal-sidebar-nav li+li {
    margin-top: 0.35rem;
}

.legal-sidebar-nav a {
    display: block;
    padding: 0.45rem 0.75rem;
    border-radius: 0.6rem;
    font-size: 0.85rem;
    color: #475569;
    text-decoration: none;
    line-height: 1.4;
    transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
}

.legal-sidebar-nav a:hover {
    background: rgba(6, 182, 212, 0.08);
    color: #0891b2;
}

.legal-sidebar-nav a.active {
    background: rgba(6, 182, 212, 0.12);
    color: #0891b2;
    font-weight: 600;
}

/* Section cards */
.legal-sections {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.legal-card {
    background: #fff;
    border: 1px solid #eef2f5;
    border-radius: 1.25rem;
    padding: 2rem;
    scroll-margin-top: 1.5rem;
    box-shadow: 0 12px 24px -16px rgba(8, 51, 68, 0.06);
}

.legal-card-head {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.legal-card-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 0.85rem;
    background: rgba(6, 182, 212, 0.1);
    color: #0891b2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.legal-card h3,
.legal-card h6 {
    font-weight: 600;
    color: #0f172a;
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.4;
}

.legal-card .text1,
.legal-card p {
    color: #475569;
    line-height: 1.75;
    font-size: 0.95rem;
}

.legal-card ul {
    padding-left: 1.35rem;
    margin-bottom: 0;
}

.legal-card ul li {
    color: #475569;
    line-height: 1.75;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.legal-card ul li:last-child {
    margin-bottom: 0;
}

.legal-card a {
    color: #0891b2;
    font-weight: 600;
    word-break: break-word;
    overflow-wrap: break-word;
}

.legal-card,
.legal-card p,
.legal-card ul li {
    word-break: break-word;
    overflow-wrap: break-word;
}

html[dir="rtl"] .legal-card ul {
    padding-left: 0;
    padding-right: 1.35rem;
}
