/* South Sudan NOC - Olympic Website CSS - Le Labo Inspired */
:root {
    /* Le Labo Inspired Minimalist Palette */
    --primary-color: #1a1a1a;
    --secondary-color: #8b7355;
    --accent-color: #f5f4f0;
    --text-color: #1a1a1a;
    --light-text: #ffffff;
    --muted-text: #666666;
    --border-color: #e8e6e1;
    --subtle-gray: #f8f7f4;
    --warm-beige: #f2f0ea;
    
    /* South Sudan Accent Colors (used sparingly) */
    --ss-black: #000000;
    --ss-red: #CE1126;
    --ss-white: #FFFFFF;
    --ss-green: #007A3D;
    --ss-blue: #0F47AF;
    --ss-yellow: #FCD116;
    
    /* Olympic Colors (for special elements) */
    --olympic-blue: #0085c3;
    --olympic-yellow: #ffd700;
    --olympic-black: #000000;
    --olympic-green: #009639;
    --olympic-red: #ee334e;
    
    /* Le Labo Typography */
    --font-main: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    --font-secondary: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
}

/* General Styles - Le Labo Minimalist */
html, body {
    font-family: var(--font-secondary);
    color: var(--text-color);
    line-height: 1.7;
    margin: 0;
    padding: 0;
    height: 100%;
    font-weight: var(--font-weight-light);
    letter-spacing: 0.3px;
    overflow-x: hidden;
    max-width: 100%;
}

* {
    box-sizing: border-box;
}

body {
    background-color: var(--light-text);
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    max-width: 100vw;
}

html {
    font-size: 15px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

main.main-content {
    /* Normal flow layout */
}

/* Le Labo Inspired Buttons */
.btn-olympic {
    display: inline-block;
    padding: 14px 32px;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    font-weight: var(--font-weight-medium);
    border: 1px solid var(--primary-color);
    background-color: var(--primary-color);
    color: var(--light-text);
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    text-align: center;
    border-radius: 0;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn-olympic:hover {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
    text-decoration: none;
}

.btn-olympic-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--border-color);
}

.btn-olympic-secondary:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-color: var(--primary-color);
    text-decoration: none;
}

/* Minimalist Link Styles */
a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

/* Olympic IOC Style Header & Navigation */
.navbar {
    padding: 0.75rem 0;
    background-color: #ffffff !important;
    border-bottom: 1px solid #e9ecef;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
    font-family: 'Inter', sans-serif;
}

.brand-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}

.navbar-brand:hover .brand-logo {
    transform: scale(1.05);
}

.brand-text h1 {
    font-family: var(--font-main);
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin: 0;
    text-transform: uppercase;
    font-weight: var(--font-weight-medium);
    color: var(--text-color);
}

.brand-text small {
    font-size: 0.7rem;
    letter-spacing: 1px;
    margin: 0;
    opacity: 0.7;
    font-weight: var(--font-weight-light);
    color: var(--muted-text);
    text-transform: uppercase;
}

.navbar-nav .nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.75rem 1.25rem;
    color: #1a1a1a !important;
    transition: all 0.2s ease;
    position: relative;
    border-radius: 4px;
    margin: 0 0.25rem;
}

.navbar-nav .nav-link:hover {
    color: #0081c8 !important;
    background-color: rgba(0, 129, 200, 0.05);
}

.navbar-nav .dropdown-toggle::after {
    margin-left: 0.5rem;
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    padding: 0.75rem 0;
    margin-top: 0.25rem;
    background-color: #ffffff;
    min-width: 220px;
}

.dropdown-item {
    font-weight: 400;
    padding: 0.75rem 1.5rem;
    transition: all 0.15s ease;
    color: #1a1a1a;
    font-size: 0.875rem;
    border: none;
}

.dropdown-item:hover {
    background-color: rgba(0, 129, 200, 0.05);
    color: #0081c8;
}

.dropdown-divider {
    margin: 0.5rem 0;
    border-top: 1px solid #e9ecef;
}


/* Le Labo Minimalist Hero Section */
.hero-section {
    min-height: 70vh;
    background-color: #f8f6f2;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    text-align: center;
    padding: 4rem 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(248, 246, 242, 0.9) 0%, rgba(242, 240, 234, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-family: var(--font-main);
    font-size: 2.8rem;
    letter-spacing: 4px;
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-weight: var(--font-weight-medium);
    color: #1a1a1a;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: var(--font-weight-normal);
    line-height: 1.8;
    color: #333333;
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Le Labo Section Styles */
section {
    padding: 4rem 0;
}

.section-title {
    font-family: var(--font-main);
    font-size: 1.8rem;
    text-align: center;
    letter-spacing: 3px;
    margin-bottom: 4rem;
    text-transform: uppercase;
    position: relative;
    font-weight: var(--font-weight-light);
    color: var(--text-color);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background-color: var(--secondary-color);
    margin: 1.5rem auto 0;
}

/* Le Labo Minimalist Card Styles */
.card-enhanced {
    border: 1px solid var(--border-color);
    border-radius: 0;
    box-shadow: none;
    transition: all 0.2s ease;
    overflow: hidden;
    background: var(--light-text);
}

.card-enhanced:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.card-enhanced .card-header {
    background-color: var(--accent-color);
    color: var(--text-color);
    border: none;
    padding: 1.5rem;
    border-radius: 0;
    font-weight: var(--font-weight-medium);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.card-enhanced .card-body {
    padding: 2rem;
    font-weight: var(--font-weight-light);
    line-height: 1.7;
}

/* Le Labo Background Sections */
.bg-olympic-light {
    background-color: var(--subtle-gray);
}

.bg-south-sudan {
    background-color: var(--primary-color);
    color: var(--light-text);
}

/* Le Labo Stats Section */
.stats-section {
    background-color: var(--subtle-gray);
    padding: 4rem 0;
}

.stat-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--light-text);
    border: 1px solid var(--border-color);
    border-radius: 0;
    box-shadow: none;
    transition: all 0.2s ease;
}

.stat-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: var(--font-weight-light);
    color: var(--text-color);
    font-family: var(--font-main);
}

.stat-label {
    font-size: 0.8rem;
    font-weight: var(--font-weight-normal);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--muted-text);
    margin-top: 1rem;
}

/* Le Labo Board Member Cards */
.board-member-card {
    background: var(--light-text);
    border: 1px solid var(--border-color);
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.2s ease;
    height: 100%;
}

.board-member-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
}

.board-member-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    filter: grayscale(20%);
    transition: filter 0.2s ease;
}

.board-member-card:hover .board-member-image {
    filter: grayscale(0%);
}

.board-member-info {
    padding: 2rem;
}

.board-member-name {
    font-family: var(--font-main);
    font-size: 1.2rem;
    font-weight: var(--font-weight-medium);
    color: var(--text-color);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.board-member-position {
    color: var(--secondary-color);
    font-weight: var(--font-weight-normal);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

/* Le Labo Minimalist Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 2rem 0 1rem;
    margin-top: auto;
    border-top: 1px solid var(--border-color);
    flex-shrink: 0;
}

.footer h5 {
    font-family: var(--font-main);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    font-weight: var(--font-weight-normal);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Le Labo Form Styles */
.form-control {
    border: 1px solid var(--border-color);
    border-radius: 0;
    padding: 0.875rem 1rem;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    font-family: var(--font-secondary);
    font-weight: var(--font-weight-light);
    background-color: var(--light-text);
}

.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.15rem rgba(139, 115, 85, 0.1);
    outline: none;
}

.form-label {
    font-weight: var(--font-weight-normal);
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scale-on-hover {
    transition: transform 0.3s ease;
}

.scale-on-hover:hover {
    transform: scale(1.05);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .navbar-nav .nav-link {
        padding: 0.5rem 1rem;
    }

    .brand-text h1 {
        font-size: 1.2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    section {
        padding: 3rem 0;
    }
    
    .hero-section {
        min-height: 70vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }
}

/* Focus Styles for Accessibility */
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(15, 71, 175, 0.25);
}

/* Additional Utility Classes */
.text-olympic-blue { color: var(--olympic-blue); }
.text-olympic-yellow { color: var(--olympic-yellow); }
.text-olympic-green { color: var(--olympic-green); }
.text-olympic-red { color: var(--olympic-red); }
.text-ss-green { color: var(--ss-green); }
.text-ss-blue { color: var(--ss-blue); }
.text-ss-red { color: var(--ss-red); }
.text-ss-yellow { color: var(--ss-yellow); }

.bg-olympic-gradient {
    background: linear-gradient(135deg, var(--olympic-blue), var(--olympic-green));
}

/* Hero Slideshow Styles */
.hero-slideshow {
    position: relative;
    height: 100vh;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    background: #000;
    margin: 0;
    padding: 0;
}

.slideshow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* Diagonal Overlay */
.hero-diagonal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(105deg, rgba(248, 246, 242, 0.98) 0%, rgba(248, 246, 242, 0.95) 40%, rgba(248, 246, 242, 0.4) 41%, transparent 70%);
    z-index: 2;
}

.hero-content-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-text-content {
    padding: 2rem 0;
}

.hero-slideshow .hero-title {
    font-size: 3rem;
    font-weight: var(--font-weight-semibold);
    color: #1a1a1a;
    line-height: 1.2;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-slideshow .hero-subtitle {
    font-size: 1.4rem;
    font-weight: var(--font-weight-normal);
    color: #333;
    margin-bottom: 1rem;
}

.hero-slideshow .hero-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    font-weight: var(--font-weight-light);
}

/* Olympic Rings in Slideshow */
.hero-slideshow .olympic-rings {
    display: inline-flex;
    gap: 8px;
}

.hero-slideshow .ring {
    width: 35px;
    height: 35px;
    border: 3px solid;
    border-radius: 50%;
    display: inline-block;
}

.hero-slideshow .ring.blue { border-color: #0085c3; }
.hero-slideshow .ring.yellow { border-color: #ffd700; }
.hero-slideshow .ring.black { border-color: #000000; }
.hero-slideshow .ring.green { border-color: #009639; }
.hero-slideshow .ring.red { border-color: #ee334e; }

/* Navigation Arrows */
.slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #1a1a1a;
}

.slide-arrow:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.slide-arrow-left {
    left: 30px;
}

.slide-arrow-right {
    right: 30px;
}

/* Slide Indicators */
.slide-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #fff;
    width: 30px;
    border-radius: 6px;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .hero-diagonal-overlay {
        background: linear-gradient(105deg, rgba(248, 246, 242, 0.98) 0%, rgba(248, 246, 242, 0.95) 50%, rgba(248, 246, 242, 0.4) 51%, transparent 80%);
    }
    
    .hero-slideshow .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-slideshow .hero-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero-slideshow {
        height: 100vh;
        max-height: 100vh;
        width: 100vw;
        max-width: 100vw;
    }
    
    .hero-diagonal-overlay {
        background: linear-gradient(180deg, rgba(248, 246, 242, 0.98) 0%, rgba(248, 246, 242, 0.95) 60%, rgba(248, 246, 242, 0.4) 61%, transparent 90%);
    }
    
    .hero-slideshow .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-slideshow .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-slideshow .hero-description {
        font-size: 1rem;
    }
    
    .slide-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slide-arrow-left {
        left: 15px;
    }
    
    .slide-arrow-right {
        right: 15px;
    }
}

.bg-south-sudan-gradient {
    background: linear-gradient(135deg, var(--ss-blue), var(--ss-green));
}


.site-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 30px 0 20px 0;
    border: none;
}

.footer-section {
    margin-bottom: 30px;
}

.footer-title {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #0081c8;
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #2a2a2a;
    color: #cccccc;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #0081c8;
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-divider {
    border-color: #333333;
    margin: 40px 0 30px 0;
}

.footer-copyright {
    color: #cccccc;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.footer-legal a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: #0081c8;
    text-decoration: none;
}

.footer-legal .separator {
    color: #666666;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 20px 0;
    }
    
    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 20px;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* RTL Support for Arabic Language */
html[dir="rtl"] {
    text-align: right;
    direction: rtl;
}

html[dir="rtl"] body {
    text-align: right;
}

/* Navigation RTL adjustments */
html[dir="rtl"] .navbar-nav {
    flex-direction: row-reverse;
}

html[dir="rtl"] .navbar-brand {
    margin-right: 0;
    margin-left: auto;
}

html[dir="rtl"] .brand-container {
    flex-direction: row-reverse;
}

html[dir="rtl"] .brand-text {
    margin-right: 15px;
    margin-left: 0;
    text-align: right;
}

/* Bootstrap utilities RTL overrides */
html[dir="rtl"] .ms-auto {
    margin-right: auto !important;
    margin-left: 0 !important;
}

html[dir="rtl"] .me-auto {
    margin-left: auto !important;
    margin-right: 0 !important;
}

html[dir="rtl"] .ms-2 {
    margin-right: 0.5rem !important;
    margin-left: 0 !important;
}

html[dir="rtl"] .me-2 {
    margin-left: 0.5rem !important;
    margin-right: 0 !important;
}

html[dir="rtl"] .text-start {
    text-align: right !important;
}

html[dir="rtl"] .text-end {
    text-align: left !important;
}

html[dir="rtl"] .text-md-end {
    text-align: left !important;
}

html[dir="rtl"] .float-start {
    float: right !important;
}

html[dir="rtl"] .float-end {
    float: left !important;
}

/* Dropdown RTL adjustments */
html[dir="rtl"] .dropdown-menu {
    text-align: right;
}

html[dir="rtl"] .dropdown-menu-end {
    right: auto !important;
    left: 0 !important;
}

/* Cards and content RTL adjustments */
html[dir="rtl"] .card {
    text-align: right;
}

html[dir="rtl"] .btn {
    text-align: center;
}

/* Hero section RTL adjustments */
html[dir="rtl"] .hero-content {
    text-align: right;
}

html[dir="rtl"] .hero-cta-buttons {
    justify-content: flex-start;
}

/* Footer RTL adjustments */
html[dir="rtl"] .footer-legal {
    justify-content: flex-start;
}

html[dir="rtl"] .social-links {
    justify-content: flex-start;
}

/* Icons and arrows RTL adjustments */
html[dir="rtl"] .slide-arrow-left {
    right: 20px;
    left: auto;
}

html[dir="rtl"] .slide-arrow-right {
    left: 20px;
    right: auto;
}

html[dir="rtl"] .press-nav-prev {
    right: -25px;
    left: auto;
}

html[dir="rtl"] .press-nav-next {
    left: -25px;
    right: auto;
}

/* Form RTL adjustments */
html[dir="rtl"] input,
html[dir="rtl"] textarea,
html[dir="rtl"] select {
    text-align: right;
    direction: rtl;
}

html[dir="rtl"] .form-label {
    text-align: right;
}

/* Arabic font adjustments */
html[dir="rtl"] body {
    font-family: 'Inter', 'Segoe UI', 'Arial', sans-serif;
    font-size: 16px;
    line-height: 1.8;
}