/* ==========================================================================
   1. VARIABLES & GLOBAL SETTINGS
   ========================================================================== */
:root {
    /* Color Palette */
    --bg-main: #0c0d10;
    --bg-card: rgba(15, 18, 22, 0.65); /* Sleek translucent card style */
    --text-main: #ffffff;
    --text-muted: #8a92a3;
    
    /* Brand Accent Colors */
    --accent-crimson: #ff003c;
    --accent-glow: rgba(255, 0, 60, 0.45);
    
    /* Typography Layout System */
    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --font-farcry: 'FarCry', 'Rajdhani', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;

    /* Global background image running seamlessly underneath everything */
    background: radial-gradient(circle at center, rgba(12, 13, 16, 0.3) 0%, #050608 100%),
                url('images/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Custom Scanline Background Overlay for Cinematic Texture */
body::before {
    content: " ";
    display: block;
    position: fixed;
    top: 0; left: 0; bottom: 0; right: 0;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), 
                linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    z-index: 9999;
    background-size: 100% 4px, 6px 100%;
    pointer-events: none;
    opacity: 0.4;
}

/* ==========================================================================
   2. NAVBAR HEADER (Absolute-Center Grid Balance)
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: rgba(10, 11, 14, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 0, 60, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    z-index: 1000;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.logo span {
    color: var(--accent-crimson);
}

nav {
    flex: 2;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #fff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.btn-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.btn-nav a {
    display: inline-block;
    padding: 8px 20px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    color: var(--accent-crimson);
    border: 1px solid var(--accent-crimson);
    background: transparent;
    transition: all 0.3s ease;
}

.btn-nav a:hover {
    background: var(--accent-crimson);
    color: #fff;
    box-shadow: 0 0 15px var(--accent-glow);
}

/* ==========================================================================
   3. HERO ARENA GRAPHIC SECTOR
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    background: transparent; /* Completely open to the deep center glow of the body image */
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    width: 100%;
    padding: 0 20px;
    z-index: 10;
}

/* ==========================================================================
   4. CINEMATIC INTRO + LIVE GLITCH
   ========================================================================== */
.intro-glitch-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 25px;
    position: relative;
}

.intro-logo {
    font-family: var(--font-farcry);
    font-size: 9rem;
    color: #fff;
    position: relative;
    display: inline-block;
    margin: 0 auto;
    text-shadow: 0 0 15px var(--accent-glow);
    transform-origin: center;
    line-height: 1.1;
    animation: cinematicShrinkFarCry 3.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.intro-logo::before,
.intro-logo::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.intro-logo::before {
    left: 3px;
    text-shadow: -3px 0 #ff003c;
    clip: rect(50px, 9999px, 70px, 0);
    animation: glitch-skew 2s infinite linear alternate-reverse;
}

.intro-logo::after {
    left: -3px;
    text-shadow: -2px 0 #00ffff, 0 0 10px var(--accent-glow);
    clip: rect(120px, 9999px, 135px, 0);
    animation: glitch-skew 3s infinite linear alternate-reverse;
}

.intro-subtext {
    font-family: var(--font-farcry);
    font-size: 3.2rem;
    color: #fff;
    margin-top: 10px;
    position: relative;
    display: inline-block;
    width: 100%;
    opacity: 0;
    line-height: 1.2;
    animation: cinematicPanOutFarCry 3.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.3s;
}

.tagline {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    letter-spacing: 4px;
    color: var(--text-muted);
    margin-top: 15px;
    margin-bottom: 35px;
    opacity: 0;
    animation: fadeInContent 1s ease forwards;
    animation-delay: 2s;
}

/* ==========================================================================
   5. ACTION SYSTEM BUTTONS
   ========================================================================== */
.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    opacity: 0;
    animation: fadeInContent 1s ease forwards;
    animation-delay: 2.3s;
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--accent-crimson);
    color: #fff;
    border: 1px solid var(--accent-crimson);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-crimson);
    box-shadow: 0 0 25px var(--accent-glow);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    border-color: #fff;
    background-color: rgba(255, 255, 255, 0.02);
}

/* ==========================================================================
   6. LIVE DATA STATS SECTOR ZONE (Darkened Backdrop Strip)
   ========================================================================== */
.stats-section {
    padding: 70px 8%;
    background-color: rgba(6, 7, 9, 0.88); 
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-top: 1px solid rgba(255, 0, 60, 0.15);
    border-bottom: 1px solid rgba(255, 0, 60, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.stat-card {
    background-color: var(--bg-card);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 30px 20px;
    border-left: 2px solid var(--accent-crimson);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-right: 1px solid rgba(255, 255, 255, 0.01);
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.stat-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

/* ==========================================================================
   7. BENEFITS AND PERKS SECTOR ZONE (Lighter Translucent Contrast Strip)
   ========================================================================== */
.perks-section {
    padding: 110px 8%;
    background-color: rgba(14, 17, 22, 0.4); 
    border-bottom: 1px solid rgba(255, 0, 60, 0.05);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--accent-crimson);
    margin: 15px auto 0 auto;
    box-shadow: 0 0 8px var(--accent-glow);
}

.perks-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.perk-card {
    background-color: var(--bg-card);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.perk-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 60, 0.4);
    background-color: rgba(25, 29, 36, 0.85);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 15px rgba(255, 0, 60, 0.1);
}

.perk-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.perk-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: #fff;
}

.perk-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* ==========================================================================
   8. LEADERSHIP COMMAND SECTOR ZONE (Deep Tactical Obsidian Block)
   ========================================================================== */
.leadership-section {
    padding: 110px 8%;
    background-color: rgba(5, 6, 8, 0.94); 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 0, 60, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
}

.leader-card {
    background-color: var(--bg-card);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 40px 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    position: relative;
    transition: all 0.3s ease;
}

.rank-leader { border-top: 3px solid var(--accent-crimson); }
.rank-co-leader { border-top: 3px solid #ffaa00; }
.rank-jr-leader { border-top: 3px solid #00bcff; }

.leader-card:hover {
    transform: translateY(-5px);
    background-color: rgba(25, 29, 36, 0.85);
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
}

.badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 3px 12px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    margin-bottom: 20px;
}

.rank-leader .badge { background-color: rgba(255, 0, 60, 0.1); color: var(--accent-crimson); }
.rank-co-leader .badge { background-color: rgba(255, 170, 0, 0.1); color: #ffaa00; }
.rank-jr-leader .badge { background-color: rgba(0, 188, 255, 0.1); color: #00bcff; }

.leader-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #fff;
    font-weight: 600;
}

.leader-id {
    font-family: var(--font-heading);
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.leader-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    min-height: 50px;
    margin-bottom: 25px;
}

.btn-profile {
    display: inline-block;
    padding: 6px 20px;
    font-family: var(--font-heading);
    font-size: 1rem;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.btn-profile:hover {
    border-color: var(--text-main);
    background-color: rgba(255, 255, 255, 0.03);
}

.btn-profile.disabled {
    opacity: 0.3;
    pointer-events: none;
    border-style: dashed;
}

/* ==========================================================================
   9. TERMINAL CLOSING FOOTER
   ========================================================================== */
.footer {
    padding: 40px 20px;
    background-color: #030405;
    text-align: center;
    border-top: 1px solid rgba(255, 0, 60, 0.1);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 1px;
    color: var(--text-muted);
}

/* ==========================================================================
   10. CINEMATIC TIMELINE SYSTEM KEYFRAMES
   ========================================================================== */
@keyframes cinematicShrinkFarCry {
    0% {
        transform: scale(1.4);
        letter-spacing: 24px;
        filter: blur(10px);
        opacity: 0;
    }
    15% {
        filter: blur(0);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        letter-spacing: 6px;
        opacity: 1;
    }
}

@keyframes cinematicPanOutFarCry {
    0% {
        transform: scale(0.85);
        letter-spacing: -2px;
        filter: blur(4px);
        opacity: 0;
    }
    40% {
        filter: blur(0);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        letter-spacing: 4px;
        opacity: 1;
    }
}

@keyframes fadeInContent {
    to {
        opacity: 1;
    }
}

@keyframes glitch-skew {
    0% { transform: skew(1deg); }
    10% { transform: skew(-2deg); }
    20% { transform: skew(0deg); }
    30% { transform: skew(3deg); }
    40% { transform: skew(-1deg); }
    50% { transform: skew(2deg); }
    60% { transform: skew(-3deg); }
    70% { transform: skew(0deg); }
    80% { transform: skew(1deg); }
    90% { transform: skew(-1deg); }
    100% { transform: skew(0deg); }
}

/* ==========================================================================
   11. MOBILE MEDIA QUERY SCALING
   ========================================================================== */
@media (max-width: 768px) {
    .navbar {
        padding: 0 20px;
    }
    
    nav {
        display: none;
    }
    
    .logo, .btn-nav {
        flex: initial;
    }

    .intro-logo {
        font-size: 5rem;
    }
    
    .intro-subtext {
        font-size: 1.8rem;
    }
    
    .tagline {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

/* ==========================================================================
   12. ABOUT US SPECIFIC TERMINAL SLIDE-UP ANIMATIONS
   ========================================================================== */
.about-reveal-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.about-hero-title {
    font-family: var(--font-heading);
    font-size: 7rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 8px;
    line-height: 1;
    margin: 0;
    opacity: 0;
    transform: translateY(50px);
    animation: terminalSlideUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.about-hero-subtitle {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--accent-crimson);
    margin-top: 10px;
    opacity: 0;
    transform: translateY(30px);
    animation: terminalSlideUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.3s;
}

.tactical-line {
    width: 0%;
    height: 2px;
    background-color: var(--accent-crimson);
    margin-top: 15px;
    box-shadow: 0 0 10px var(--accent-glow);
    animation: tacticalLineExpand 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.6s;
}

@keyframes terminalSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes tacticalLineExpand {
    to {
        width: 180px;
    }
}

@media (max-width: 768px) {
    .about-hero-title {
        font-size: 3.5rem;
        letter-spacing: 4px;
    }
    .about-hero-subtitle {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }
}

/* ==========================================================================
   13. CINEMATIC MULTI-STAGE SPLASH SYSTEM
   ========================================================================== */
#intro-splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #050608; 
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    
    animation: masterSplashExit 0.6s ease forwards;
    animation-delay: 6.2s; 
}

/* --- STAGE 1: TERMINAL INTERFACE TEXT BLOCK --- */
.splash-text-container {
    position: absolute;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10002;
    
    animation: textStageFadeOut 0.4s ease forwards;
    animation-delay: 3.5s;
}

.splash-logo {
    font-family: var(--font-heading);
    font-size: 8rem;
    font-weight: 700;
    letter-spacing: 15px;
    color: #fff;
    text-shadow: 0 0 20px var(--accent-glow);
    position: relative;
    line-height: 1;
    margin: 0;
    opacity: 0;
    animation: splashLogoReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.3s;
}

.splash-logo::before {
    content: attr(data-text);
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: #050608;
    opacity: 0;
    left: 4px;
    text-shadow: -3px 0 var(--accent-crimson);
    clip: rect(30px, 9999px, 50px, 0);
    animation: splashGlitch 1.5s infinite linear alternate-reverse;
    animation-delay: 0.5s;
}

.splash-bar {
    width: 0px;
    height: 3px;
    background-color: var(--accent-crimson);
    margin-top: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0 15px var(--accent-glow);
    animation: splashBarExpand 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 1s;
}

.splash-loading {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 3px;
    color: var(--text-muted);
    opacity: 0;
    display: flex;
    align-items: center;
    animation: fadeInContent 0.5s ease forwards;
    animation-delay: 1.8s;
}

.terminal-dot {
    color: var(--accent-crimson);
    font-weight: 700;
    display: inline-block;
    animation: tacticalDotBlink 0.4s steps(2, start) infinite;
    animation-delay: 2.2s; 
}

/* --- STAGE 2: FULL VIEWPORT IMAGE CANVAS (Fixed Crop & Zoom) --- */
.splash-image-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    
    background: radial-gradient(circle at center, rgba(5, 6, 8, 0.1) 0%, #050608 95%),
                url('images/splash.png');
    background-size: contain; 
    background-position: center;
    background-repeat: no-repeat;
    
    opacity: 0;
    transform: scale(0.99); 
    
    animation: imageStageSequence 2.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 3.6s;
}

/* ==========================================================================
   14. SPLASH TIMELINE STAGE KEYFRAMES
   ========================================================================== */
@keyframes splashLogoReveal {
    0% { opacity: 0; transform: scale(0.9); filter: blur(15px); letter-spacing: 30px; }
    100% { opacity: 1; transform: scale(1); filter: blur(0); letter-spacing: 15px; }
}

@keyframes splashBarExpand {
    to { width: 250px; }
}

@keyframes tacticalDotBlink {
    to { visibility: hidden; }
}

@keyframes textStageFadeOut {
    to {
        opacity: 0;
        transform: scale(0.98);
        filter: blur(5px);
    }
}

@keyframes imageStageSequence {
    0% {
        opacity: 0;
        transform: scale(0.99); 
    }
    15% {
        opacity: 1;
        transform: scale(1.0); 
    }
    85% {
        opacity: 1;
        transform: scale(1.005); 
    }
    100% {
        opacity: 0;
        transform: scale(1.01); 
    }
}

@keyframes masterSplashExit {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes splashGlitch {
    0%, 90%, 100% { opacity: 0; clip: rect(0, 0, 0, 0); }
    92% { opacity: 1; clip: rect(20px, 9999px, 45px, 0); }
    95% { opacity: 1; clip: rect(65px, 9999px, 80px, 0); }
    98% { opacity: 0; clip: rect(0, 0, 0, 0); }
}

@media (max-width: 768px) {
    .splash-logo {
        font-size: 4.5rem;
        letter-spacing: 8px;
    }
    @keyframes splashLogoReveal {
        0% { opacity: 0; filter: blur(15px); letter-spacing: 20px; }
        100% { opacity: 1; filter: blur(0); letter-spacing: 8px; }
    }
}

/* ==========================================================================
   15. SUB-SECTION INFRASTRUCTURE CARD LAYOUTS & METADATA
   ========================================================================== */
.sub-section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 35px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

/* Subtle left indicator bars to visually isolate the core systems from peace trees */
.branch-core {
    border-left: 2px solid rgba(255, 255, 255, 0.2) !important;
}
.branch-peace {
    border-left: 2px solid #00bcff !important;
}

/* Translucent Metadata Footer Panel underneath upgrades */
.ledger-meta-block {
    margin-top: 60px;
    background-color: rgba(10, 12, 16, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.02);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 1px;
    color: var(--text-muted);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.ledger-meta-block strong {
    color: var(--accent-crimson);
}

@media (max-width: 768px) {
    .ledger-meta-block {
        flex-direction: column;
        gap: 10px;
        padding: 20px;
        font-size: 1rem;
    }
    .sub-section-title {
        font-size: 1.6rem;
    }
}