* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

:root {
    --primary: #0D121F;
    --primary-light: #1A2337;
    --primary-dark: #05080F;
    --secondary: #C49B48;
    /* Vibrant Gold */
    --accent-indigo: #4f46e5;
    --champagne: #f9f1e7;
    --white: #ffffff;
    --bg-light: #f8fafc;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --radius: 24px;
    --radius-lg: 40px;
    --shadow-soft: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
    --shadow-premium: 0 20px 50px -12px rgba(13, 18, 31, 0.12);
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    /* Design 3.0 Spacing Scale */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1.5rem;
    --space-lg: 3rem;
    --space-xl: 6rem;
    --font-main: 'Poppins', sans-serif;
    --font-rtl: 'Dubai', 'IBM Plex Sans Arabic', sans-serif;
}

@keyframes mesh {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes reveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body {
    margin: 0;
    font-family: var(--font-main);
    color: var(--text-main);
    background: var(--bg-light);
    overflow-x: hidden;
    scroll-behavior: smooth;
    line-height: 1.6;
}

:lang(ar):not(i):not([class*="fa-"]) {
    font-family: var(--font-rtl) !important;
}

:lang(en):not(i):not([class*="fa-"]) {
    font-family: var(--font-main) !important;
}

.arabic:not(i):not([class*="fa-"]) {
    font-family: var(--font-rtl) !important;
}

.english:not(i):not([class*="fa-"]) {
    font-family: var(--font-main) !important;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 7.5%;
    position: fixed;
    inset-block-start: 0;
    left: 0;
    right: 0;
    max-width: 100vw;
    overflow-x: hidden;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    border-block-end: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo img {
    height: 40px;
    /* Reduced from 48px to fit perfectly */
    width: auto;
    display: block;
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.05);
}

.logo h2 {
    display: none;
    /* Hide text as logo is now used */
    color: var(--primary);
    margin: 0;
    font-weight: 800;
    letter-spacing: -2px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

[dir="rtl"] .navbar,
[dir="rtl"] .nav-links {
    direction: rtl;
    /* flex-direction: row-reverse; */
}

[dir="ltr"] .navbar,
[dir="ltr"] .nav-links {
    direction: ltr;
    flex-direction: row;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.7;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: var(--primary);
    opacity: 1;
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
    transition: 0.3s;
}

.btn-lang-toggle {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1.25rem;
    background: rgba(18, 65, 74, 0.05);
    border: 1px solid rgba(18, 65, 74, 0.1);
    border-radius: 12px;
    font-size: 0.9rem;
    color: var(--primary) !important;
    opacity: 1 !important;
}

.btn-lang-toggle:hover {
    background: rgba(18, 65, 74, 0.1);
    transform: translateY(-2px);
}

.btn-login {
    background: var(--primary);
    color: white !important;
    padding: 0.85rem 2.25rem;
    border-radius: 16px;
    font-weight: 700;
    box-shadow: 0 10px 25px -5px rgba(18, 65, 74, 0.25);
    opacity: 1 !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-inline: 7.5%;
    background: linear-gradient(-45deg, #f8fafc, #f1f5f9, #e2e8f0, #f8fafc);
    background-size: 400% 400%;
    animation: mesh 15s ease infinite;
    padding-block: 140px 100px;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
    filter: blur(140px);
    opacity: 0.07;
    inset-block-start: -250px;
    inset-inline-end: -250px;
    z-index: 0;
}

.hero-content {
    flex: 1.2;
    max-width: 680px;
    position: relative;
    z-index: 2;
    animation: reveal 1s ease-out;
}

.hero-tagline {
    color: var(--primary-light);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.8rem;
    margin-block-end: 1rem;
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(18, 65, 74, 0.06);
    border-radius: 50px;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.05;
    color: var(--primary-dark);
    margin-block-end: 1.5rem;
    font-weight: 800;
    letter-spacing: -3px;
}

.hero p {
    font-size: 1.35rem;
    color: var(--text-muted);
    margin-block-end: 2.5rem;
    line-height: 1.8;
    max-width: 95%;
}

.hero-btns {
    display: flex;
    gap: 2rem;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    text-decoration: none;
    padding: 1.4rem 4.5rem;
    border-radius: 20px;
    font-weight: 700;
    box-shadow: 0 20px 45px -10px rgba(18, 65, 74, 0.35);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.btn-hero-primary:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 30px 60px -15px rgba(18, 65, 74, 0.45);
}

.btn-hero-secondary {
    background: var(--white);
    color: var(--primary);
    text-decoration: none;
    padding: 1.4rem 4.5rem;
    border-radius: 20px;
    font-weight: 700;
    border: 1px solid rgba(18, 65, 74, 0.12);
    transition: 0.4s;
    font-size: 1.1rem;
}

.btn-hero-secondary:hover {
    background: var(--bg-light);
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.hero-stats-overlay {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
    animation: reveal 1s ease-out 0.2s backwards;
}

.hero-glass-card {
    background: var(--glass);
    backdrop-filter: blur(30px);
    border-radius: 48px;
    padding: 3.5rem;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-premium);
    width: 100%;
    max-width: 580px;
    position: relative;
}

/* Features Section Upgrade */
.features {
    padding: 8rem 7.5% 6rem;
    background: var(--white);
    position: relative;
    z-index: 1;
}

.section-header {
    margin-bottom: 4rem;
    text-align: center;
}

.section-header h2 {
    font-size: 3.75rem;
    color: var(--primary-dark);
    font-weight: 800;
    margin-bottom: 2rem;
    letter-spacing: -2px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 4rem;
}

.feature-card {
    padding: 3.5rem 2.5rem;
    border-radius: 40px;
    background: var(--bg-light);
    transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-20px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-premium);
    background: white;
}

.feature-icon-wrap {
    width: 100px;
    height: 100px;
    background: rgba(18, 65, 74, 0.1);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-block: 0 2rem;
    margin-inline: auto;
    font-size: 3rem;
    color: var(--primary);
    position: relative;
    z-index: 1;
    transition: 0.6s;
}

.feature-card:hover .feature-icon-wrap {
    transform: scale(1.15) rotate(8deg);
    background: var(--white);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.feature-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    position: relative;
    z-index: 1;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.feature-card p {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.9;
    position: relative;
    z-index: 1;
}

/* Animations Logic */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-text {
    opacity: 0;
    animation: reveal 0.8s ease-out forwards;
}

.stat-bubble {
    padding: 2.25rem;
    border-radius: 28px;
    transition: 0.5s;
    text-align: center;
}

.stat-bubble:hover {
    transform: scale(1.08);
    background: white !important;
    box-shadow: var(--shadow-soft);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 700;
    display: block;
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
}

.counter {
    margin: 0;
    color: var(--primary);
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: -1.5px;
}

/* Shape Divider */
.custom-shape-divider-bottom-1772233000 {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1772233000 svg {
    position: relative;
    display: block;
    width: calc(150% + 1.3px);
    height: 140px;
}

.custom-shape-divider-bottom-1772233000 .shape-fill {
    fill: #FFFFFF;
}

/* Function Sections (Design 5.0) */
.function-section {
    padding: 6rem 7.5%;
    background: var(--white);
    position: relative;
}

.function-section.bg-alt {
    background: var(--bg-light);
}

.function-section .container {
    max-width: 1400px;
    margin: 0 auto;
}

.function-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-block-end: 2rem;
}

.function-row.reverse {
    flex-direction: row-reverse;
}

.function-text {
    flex: 1.2;
}

.function-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.badge {
    display: inline-block;
    padding: 0.6rem 1.4rem;
    background: rgba(229, 182, 42, 0.1);
    color: var(--secondary);
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-block-end: 1rem;
}

.badge.primary {
    background: rgba(18, 65, 74, 0.1);
    color: var(--primary);
}

.function-text h2 {
    font-size: 3.5rem;
    color: var(--primary-dark);
    margin-bottom: 1.25rem;
    font-weight: 800;
    letter-spacing: -2px;
}

.function-text p {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-block-end: 2rem;
}

.function-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.function-list li {
    display: flex;
    gap: 1.5rem;
    margin-block-end: 1.5rem;
    align-items: flex-start;
}

.function-list li i {
    font-size: 1.8rem;
    color: var(--primary);
    margin-top: 0.25rem;
}

.function-list li strong {
    display: block;
    font-size: 1.35rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.function-list li span {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Glass Feature Cards (Visuals) */
.glass-feature-card {
    background: var(--white);
    border-radius: 48px;
    padding: 2.5rem;
    box-shadow: var(--shadow-premium);
    width: 100%;
    max-width: 440px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: 0.5s;
}

.glass-feature-card:hover {
    transform: translateY(-15px) scale(1.02);
}

.glass-feature-card.orchid {
    background: linear-gradient(135deg, #ffffff 0%, #f1f0ff 100%);
}

.glass-feature-card .main-icon {
    font-size: 5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: block;
}

.mini-stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.mini-stat {
    background: rgba(18, 65, 74, 0.04);
    padding: 1.5rem;
    border-radius: 20px;
}

.mini-stat small {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.mini-stat strong {
    font-size: 1.5rem;
    color: var(--primary);
}

.spark-line {
    height: 4px;
    width: 60%;
    background: linear-gradient(90deg, var(--primary), transparent);
    margin: 0 auto;
    border-radius: 10px;
}

.calendar-preview {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.day-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(18, 65, 74, 0.1);
}

.day-dot.active {
    background: var(--secondary);
    color: white !important;
    box-shadow: 0 0 15px var(--secondary);
}

.status-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
}

/* Footer Upgrade */
.landing-footer {
    padding-block: 6rem 3rem;
    padding-inline: 7.5%;
    background: var(--primary-dark);
    color: white;
    text-align: center;
    position: relative;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 50px;
    width: auto;
    display: block;
}

.footer-logo h2 {
    display: none;
    /* Hide text as logo is used */
    color: var(--white);
    margin: 0;
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.footer-copy {
    opacity: 0.4;
    font-size: 1rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* RTL Adjustments (Design 6.0 Logical Perfection) */
[dir="rtl"] body {
    font-family: var(--font-rtl);
}

/* Global RTL Flips for directional elements */
[dir="rtl"] .fa-arrow-right,
[dir="rtl"] .fa-arrow-left,
[dir="rtl"] .btn-hero-primary i,
[dir="rtl"] .spark-line {
    transform: scaleX(-1);
}



[dir="rtl"] .footer-copy {
    direction: ltr;
    display: block;
}

/* Precise Text Alignment and Flow for Arabic */
[dir="rtl"] p,
[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3,
[dir="rtl"] span,
[dir="rtl"] li {
    unicode-bidi: plaintext;
    text-align: right;
}

/* Precise Text Alignment and Flow for Arabic */
[dir="rtl"] p,
[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3,
[dir="rtl"] span,
[dir="rtl"] li {
    unicode-bidi: plaintext;
    text-align: right;
}

/* Correction for visual flow when icons are present */
[dir="rtl"] .function-list li {
    text-align: right;
}

/* Hero Stats Components (Design 22.0) */
.card-mini-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.card-mini-title {
    font-weight: 700;
    color: var(--primary);
}

.card-mini-header i {
    color: var(--secondary);
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-bubble {
    padding: 1rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-bubble.primary-light {
    background: rgba(18, 65, 74, 0.05);
}

.stat-bubble.secondary-light {
    background: rgba(229, 182, 42, 0.05);
}

.recent-activity-wrap {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.recent-activity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.recent-activity-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 20px rgba(18, 65, 74, 0.2);
    flex-shrink: 0;
}

.recent-activity-text {
    display: flex;
    flex-direction: column;
}

.activity-title {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.activity-subtitle {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

@media (max-width: 968px) {
    .navbar {
        flex-direction: row;
        justify-content: space-between;
        padding: 1.25rem 5.5%;
        height: 80px;
        overflow: visible;
    }

    .menu-toggle {
        display: block;
        position: relative;
        z-index: 10000;
        pointer-events: auto;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
    }

    .menu-toggle i {
        font-size: 1.5rem;
        color: var(--primary);
    }

    .nav-links {
        position: fixed;
        top: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(25px);
        height: 100vh;
        width: 85%;
        max-width: 320px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-block: 6rem 4rem;
        gap: 2.25rem;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.15);
        z-index: 9999;
        overflow-y: auto;
    }

    [dir="ltr"] .nav-links,
    [dir="rtl"] .nav-links {
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    [dir="ltr"] .nav-links {
        left: 0;
        right: auto;
        transform: translateX(-100%);
        border-right: 1px solid rgba(0, 0, 0, 0.05);
    }

    [dir="rtl"] .nav-links {
        right: 0;
        left: auto;
        transform: translateX(100%);
        border-left: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-links.active {
        transform: translateX(0);
        pointer-events: all;
    }

    .nav-links a {
        font-size: 1.25rem;
        font-weight: 700;
        opacity: 1;
    }

    .btn-lang-toggle {
        width: auto;
        margin-block-start: 1rem;
    }

    .btn-login {
        width: 80%;
        text-align: center;
    }

    .hero,
    .features,
    .function-section,
    .landing-footer {
        padding-inline: 6%;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-block: 120px 60px;
    }

    .hero-content {
        flex: none;
        max-width: 100%;
        margin-block-end: 3rem;
    }

    .hero h1 {
        font-size: 2.5rem;
        margin-block-end: 1rem;
        letter-spacing: -1.5px;
    }

    .hero p {
        font-size: 1.1rem;
        margin-block-end: 2.5rem;
        max-width: 100%;
    }

    .hero-btns {
        justify-content: center;
        gap: 1rem;
        flex-direction: column;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 1.1rem 2rem;
        width: 100%;
        justify-content: center;
        font-size: 1rem;
    }

    .hero-stats-overlay {
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
    }

    .function-row {
        flex-direction: column !important;
        gap: 3.5rem;
        margin-block-end: 2rem;
    }

    .function-row.reverse {
        flex-direction: column-reverse !important;
    }

    .function-text h2 {
        font-size: 2rem;
        letter-spacing: -1px;
        margin-bottom: 1.25rem;
    }

    .function-text p {
        font-size: 1.05rem;
        margin-block-end: 2rem;
    }

    .function-list li {
        gap: 1rem;
        margin-block-end: 1.5rem;
    }

    .function-list li i {
        font-size: 1.35rem;
        margin-top: 0.2rem;
    }

    .function-list li strong {
        font-size: 1.1rem;
        margin-bottom: 0.2rem;
    }

    .function-list li span {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .glass-feature-card {
        padding: 2.5rem 1.25rem;
        border-radius: 32px;
        max-width: 100%;
    }

    .glass-feature-card .main-icon {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
    }

    .mini-stat-row {
        gap: 0.75rem;
        margin-top: 2rem;
    }

    .mini-stat {
        padding: 1rem;
        border-radius: 16px;
    }

    .mini-stat strong {
        font-size: 1.2rem;
    }

    .calendar-preview {
        gap: 0.6rem;
        margin-bottom: 1.25rem;
    }

    .day-dot {
        width: 8px;
        height: 8px;
    }

    /* Hero Stats Mobile Refinements (Design 22.0) */
    .card-mini-header {
        margin-bottom: 1rem;
    }

    .card-mini-title {
        font-size: 0.9rem;
    }

    .hero-stats-grid {
        gap: 0.75rem;
    }

    .stat-bubble {
        padding: 0.75rem;
        gap: 0.15rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .stat-bubble .counter {
        font-size: 1.25rem !important;
    }

    .recent-activity-wrap {
        margin-top: 1rem;
        padding-top: 1rem;
    }

    .recent-activity-icon {
        width: 36px;
        height: 36px;
        box-shadow: 0 5px 15px rgba(18, 65, 74, 0.15);
    }

    .recent-activity-icon i {
        font-size: 0.9rem;
    }

    .activity-title {
        font-size: 0.85rem;
    }

    .activity-subtitle {
        font-size: 0.7rem;
    }
}
