/* ==========================================================================
   CSS Variables & Tokens
   ========================================================================== */
   :root {
    /* Colors - Premium Dark Mode */
    --bg-main: #0B0F19; /* Deep Navy/Black */
    --bg-secondary: #131A2A;
    --bg-glass: rgba(19, 26, 42, 0.7);
    --bg-glass-hover: rgba(19, 26, 42, 0.9);
    
    /* Accents - Gold / Premium Blue */
    --accent-gold: #D4AF37;
    --accent-gold-light: #F3E5AB;
    --accent-gold-dark: #AA8C2C;
    --accent-blue: #2563EB;
    
    /* Typography */
    --text-primary: #FFFFFF;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #F3E5AB 0%, #D4AF37 100%);
    --gradient-glow: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(11, 15, 25, 0) 70%);
    
    /* Shadows & Effects */
    --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --border-glass: 1px solid rgba(255, 255, 255, 0.08);
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    /* Layout */
    --max-width: 1200px;
    --section-padding: 100px 0;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-primary);
    overflow-x: hidden;
}

body {
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.section {
    padding: var(--section-padding);
}

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */
h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 700;
}

.text-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* Glassmorphism Panel */
.glass-panel {
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: var(--border-glass);
    border-radius: 16px;
    box-shadow: var(--shadow-glass);
    transition: var(--transition-smooth);
}

.glass-panel:hover {
    background: var(--bg-glass-hover);
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--gradient-gold);
    color: #000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline {
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--accent-gold);
    color: var(--bg-main);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(18, 20, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.navbar.scrolled {
    background: rgba(18, 20, 26, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    padding: 10px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.5px;
}

.logo-icon i {
    font-size: 1.8rem;
    color: var(--accent-gold);
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}
.nav-link.active {
    color: var(--accent-gold);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    padding-top: 150px;
    padding-bottom: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-glow);
    filter: blur(60px);
}

.orb-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    left: -200px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    bottom: -100px;
    right: -100px;
    opacity: 0.7;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 100px;
    color: var(--accent-gold-light);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 24px;
    /* We'll use a subtle gradient border */
    padding: 2px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.hero-img {
    border-radius: 22px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hero-glass-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    padding: 20px;
    border-radius: 16px;
    background: rgba(11, 15, 25, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    z-index: 2;
    min-width: 250px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.card-header i {
    color: #10B981;
}

.card-body .label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.card-body .value {
    font-size: 1.8rem;
    color: var(--accent-gold);
    margin-bottom: 12px;
}

.progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: var(--gradient-gold);
    border-radius: 4px;
    transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ==========================================================================
   Stats Section
   ========================================================================== */
.stats-section {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.2);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-number span {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   Solutions Section
   ========================================================================== */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.solution-card {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
}

.card-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--accent-gold);
    font-size: 2rem;
    transition: var(--transition-smooth);
}

.solution-card:hover .card-icon-wrapper {
    background: var(--accent-gold);
    color: #000;
    transform: scale(1.1);
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.card-text {
    color: var(--text-secondary);
    margin-bottom: 24px;
    flex-grow: 1;
}

.card-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-gold);
    font-weight: 600;
    margin-top: auto;
}

.card-link:hover {
    gap: 12px;
}

/* ==========================================================================
   Process Section (Timeline)
   ========================================================================== */
.process-section {
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9IiNmZmZmZmYiIGZpbGwtb3BhY2l0eT0iMC4wMyI+PHBhdGggZD0iTTM2IDM0djIwaDJWMzRoLTJ6bS0yIDBoLTJWMXgydjMzem0tNiAwaC0yVjF0MnYzM3ptLTYgMGgtMlYxaDJ2MzN6bS02IDBoLTJWMXgydjMzem0tNiAwaC0yVjF0MnYzM3ptLTYgMGgtMlYxaDJ2MzN6bTQyIDBoLTJWMXgydjMzem02IDBoLTJWMXgydjMzem02IDBoLTJWMXgydjMzTTAgMTRoNjB2Mkgwdi0yem0wIDhoNjB2Mkgwdi0yem0wIDhoNjB2Mkgwdi0yem0wIDhoNjB2Mkgwdi0yem0wIDhoNjB2Mkgwdi0yem0wIDhoNjB2Mkgwdi0yem0wIDRoNjB2Mkgwdi0yeiIvPjwvZz48L2c+PC9zdmc+') center/auto;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    height: 100%;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.timeline-item {
    position: relative;
    padding-left: 70px;
    margin-bottom: 40px;
}

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

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 2;
    transition: var(--transition-smooth);
}

.timeline-marker.highlight {
    background: var(--accent-gold);
    color: #000;
    border-color: var(--accent-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.timeline-content {
    padding: 30px;
    position: relative;
}

.timeline-content.highlight-panel {
    border-color: rgba(212, 175, 55, 0.3);
}

.timeline-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.timeline-content p {
    color: var(--text-secondary);
}

.badge-free {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-gold);
    color: #000;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
    padding: 80px 0;
}

.cta-box {
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(19,26,42,0.9), rgba(11,15,25,0.9)), url('cta-bg.jpg') center/cover;
    border-color: rgba(212, 175, 55, 0.2);
}

.cta-content {
    max-width: 600px;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: #06090F;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-desc {
    color: var(--text-secondary);
    margin-top: 20px;
    max-width: 400px;
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.footer-links ul li, .footer-contact ul li {
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact i {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-top: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
}

/* ==========================================================================
   Animations & Interactivity
   ========================================================================== */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 80px;
    }
    
    .hero-subtitle {
        margin: 0 auto 2.5rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-box {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(18, 20, 26, 0.98);
        padding: 20px;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .nav-links.active {
        display: flex;
    }
    
    .nav-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
}
/* --- PREMIUM BLOG STYLES --- */
.blog-hero {
    padding: 140px 20px 80px;
    text-align: center;
    background: linear-gradient(to bottom, var(--bg-main) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    margin-bottom: 60px;
}
.blog-hero h1 {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold);
    margin-bottom: 16px;
}
.blog-hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}
.post-card {
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}
.post-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}
.post-card-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.post-card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.post-category {
    color: var(--accent-gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 12px;
}
.post-title {
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.3;
}
.post-excerpt {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}
.post-meta {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Featured Post (First Post) */
.featured-post {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 85%;
    margin: 0 auto;
}
.featured-post .post-card-img {
    height: 100%;
    min-height: 400px;
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}
.featured-post .post-card-content {
    padding: 60px;
    justify-content: center;
}
.featured-post .post-title {
    font-size: 2.5rem;
}
@media (max-width: 992px) {
    .featured-post {
        grid-template-columns: 1fr;
    }
    .featured-post .post-card-img {
        min-height: 250px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .featured-post .post-card-content {
        padding: 30px;
    }
    .featured-post .post-title {
        font-size: 1.8rem;
    }
}

/* Single Post Styles */
.single-post-header {
    text-align: center;
    padding: 160px 20px 60px;
    background: linear-gradient(to bottom, var(--bg-main) 0%, rgba(212, 175, 55, 0.05) 100%);
}
.single-post-title {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold);
    max-width: 900px;
    margin: 0 auto 24px;
    line-height: 1.2;
}
.single-post-meta {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 40px;
}
.single-post-thumbnail img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    margin: 0 auto;
    display: block;
}
.single-post-content {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}
.single-post-content h2, .single-post-content h3 {
    color: var(--text-primary);
    font-family: 'Playfair Display', serif;
    margin-top: 50px;
    margin-bottom: 24px;
}
.single-post-content h2 { font-size: 2rem; }
.single-post-content h3 { font-size: 1.5rem; color: var(--accent-gold); }
.single-post-content p { margin-bottom: 24px; }
.single-post-content ul { margin-left: 20px; margin-bottom: 24px; }
.single-post-content li { margin-bottom: 12px; }
.single-post-content a { color: var(--accent-gold); text-decoration: underline; }
.single-post-content a:hover { color: var(--text-primary); }

/* Split Showcase Section */
.split-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin: 40px 0;
}
.split-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
}
.split-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    max-height: 400px;
    object-fit: cover;
}
.split-block h2 {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold);
    margin-bottom: 24px;
}
.split-block p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

@media (max-width: 992px) {
    .split-showcase {
        grid-template-columns: 1fr;
    }
    .split-block {
        padding: 40px 20px;
    }
    .split-image {
        min-height: 300px;
    }
    .reverse-mobile {
        display: flex;
        flex-direction: column-reverse;
    }
}
