/**
 * Alea Biohacking Theme - Metabolic & Cozy
 * Concept: Biological warmth, cellular flow, soft energy.
 */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Inter:wght@300;400;600&display=swap');

:root {
    /* Palette: Metabolic Warmth */
    --bg-color: #fdfbf7;
    /* Off-white/Cream - Cozy base */
    --text-main: #2d2d2d;
    --text-muted: #666;
    --accent-orange: #FF6B00;
    --accent-soft: #FF9E4A;
    --biological-pink: #FFC2B4;
    /* Soft organic tone */
    --card-bg: rgba(255, 255, 255, 0.6);
    --glass-border: rgba(255, 255, 255, 0.8);
}

body {
    background-color: var(--bg-color);
    overflow: hidden;
}

/* --- Organic "Metabolic" Background --- */
/* We use large blurred blobs to simulate cellular fluid movement */

.reveal .slides section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.08) 0%, rgba(255, 194, 180, 0.05) 50%, transparent 70%);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    /* Organic Blob Shape */
    z-index: -1;
    filter: blur(40px);
    animation: metabolicFlow 20s infinite alternate ease-in-out;
}

.reveal .slides section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 158, 74, 0.08) 0%, rgba(253, 251, 247, 0) 70%);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    z-index: -1;
    filter: blur(30px);
    animation: metabolicBreath 15s infinite alternate ease-in-out;
}

/* Subtle "Cellular" Particles */
.reveal {
    background-image:
        radial-gradient(#FF6B00 1px, transparent 1px),
        radial-gradient(#FF6B00 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: 0 0, 25px 25px;
    background-color: var(--bg-color);
    /* Make the dots extremely subtle */
    background-image: radial-gradient(rgba(255, 107, 0, 0.03) 1px, transparent 1px);
}

@keyframes metabolicFlow {
    0% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: translate(-20px, 20px) rotate(10deg);
    }
}

@keyframes metabolicBreath {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 0.6;
    }
}

/* --- Typography --- */
.reveal h1,
.reveal h2,
.reveal h3 {
    font-family: 'Outfit', sans-serif;
    color: #1a1a1a;
    letter-spacing: -0.01em;
}

.reveal h1 {
    font-weight: 800;
    font-size: 4em;
    background: linear-gradient(135deg, var(--accent-orange), #FF8F40);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5em;
}

.reveal p,
.reveal li {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
}

/* --- Glass Cards (Cozy Feel) --- */
.reveal .card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    /* Softer corners */
    padding: 30px;
    box-shadow: 0 8px 32px rgba(255, 107, 0, 0.05);
    /* Warm shadow */
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease;
}

.reveal .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.1);
}

/* --- Layouts --- */
.reveal .grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.reveal .grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.reveal ul.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.reveal ul.benefit-list li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    font-size: 0.95em;
}

.reveal ul.benefit-list li::before {
    content: "●";
    /* Softer than checkmark */
    color: var(--accent-orange);
    font-size: 0.6em;
    margin-right: 15px;
}

/* --- Images --- */
.reveal .placeholder-image {
    border-radius: 20px;
    background: linear-gradient(135deg, #f0f0f0, #e6e6e6);
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.05), -10px -10px 30px rgba(255, 255, 255, 0.8);
    /* Neumorphism-ish */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.reveal .logo-header {
    margin-bottom: 40px;
}

.section-title-slide h1 {
    border-left: 5px solid var(--accent-orange);
    padding-left: 30px;
}

/* Intro Specifics */
.slide-intro {
    text-align: center;
}

.animate-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.banner-container img {
    transition: transform 0.5s ease;
}

.banner-container img:hover {
    transform: scale(1.02);
}

/* ========================================
   SLIDE: INTRO (New - Split Layout)
   ======================================== */
.slide-intro-new {
    padding: 0 !important;
}

.intro-split {
    display: grid;
    grid-template-columns: 2fr 1fr;
    width: 100%;
    height: 100%;
    align-items: center;
}

.intro-main {
    padding: 60px;
    text-align: center;
}

.intro-title-box {
    display: inline-block;
    border: 2px dashed rgba(100, 130, 180, 0.3);
    padding: 40px 50px;
    margin-bottom: 25px;
}

h1.intro-title {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 800 !important;
    font-size: 2.8em !important;
    color: #2d2d2d !important;
    background: none !important;
    -webkit-text-fill-color: #2d2d2d !important;
    line-height: 1.15 !important;
    margin: 0 !important;
    text-transform: none;
}

.intro-alea {
    font-family: 'Georgia', 'Times New Roman', serif !important;
    font-style: italic !important;
    font-weight: 400 !important;
    color: var(--accent-orange) !important;
    -webkit-text-fill-color: var(--accent-orange) !important;
    font-size: 1.15em;
}

.intro-subtitle {
    font-family: 'Inter', sans-serif !important;
    font-size: 0.9em !important;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-soft) !important;
    margin: 0;
}

.intro-right {
    background: linear-gradient(180deg, #e8e4de 0%, #d5d0c8 100%);
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 40px;
}

.intro-photo-area {
    text-align: center;
}

.intro-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

/* ========================================
   SLIDE: AGENDA (Numbered List)
   ======================================== */
.slide-agenda {
    padding: 0 !important;
}

.agenda-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    width: 100%;
    height: 100%;
    align-items: center;
}

.agenda-left {
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

h1.agenda-title {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 800 !important;
    font-size: 3.5em !important;
    color: #1a1a1a !important;
    background: none !important;
    -webkit-text-fill-color: #1a1a1a !important;
    margin: 0 !important;
    position: relative;
    padding-bottom: 15px;
}

h1.agenda-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--accent-orange);
}

.agenda-right {
    padding: 40px 60px;
}

.agenda-item {
    display: flex;
    align-items: center;
    padding: 16px 0;
    border-left: 3px solid transparent;
    padding-left: 20px;
    transition: border-color 0.3s;
}

.agenda-item:hover {
    border-left-color: var(--accent-orange);
}

.agenda-num {
    font-family: 'Inter', sans-serif;
    font-size: 0.85em;
    font-weight: 600;
    color: var(--accent-orange);
    min-width: 40px;
}

.agenda-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.15em;
    font-weight: 500;
    color: #2d2d2d;
}

/* ========================================
   SLIDE: ERWIN'S JOURNEY
   ======================================== */
.slide-journey {
    padding: 40px 60px !important;
    text-align: left;
}

h2.journey-title {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 800 !important;
    font-size: 2.5em !important;
    color: #1a1a1a !important;
    text-transform: uppercase;
    margin-bottom: 10px !important;
    position: relative;
    padding-bottom: 15px;
}

h2.journey-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--accent-orange);
}

.journey-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.journey-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.journey-section {
    text-align: left;
}

.journey-heading {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    font-size: 0.85em !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #1a1a1a !important;
    border-left: 3px solid var(--accent-orange);
    padding-left: 12px;
    margin-bottom: 8px !important;
}

.journey-section p {
    font-size: 0.75em !important;
    color: #555 !important;
    margin: 4px 0 !important;
    line-height: 1.5 !important;
}

/* ========================================
   SLIDE: ALEA'S VALUES & MISSION
   ======================================== */
.slide-values {
    padding: 50px 60px !important;
    text-align: left;
    background: linear-gradient(180deg, var(--bg-color) 60%, #FFF0E6 100%) !important;
}

h2.values-title {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 800 !important;
    font-size: 2.8em !important;
    color: #1a1a1a !important;
    text-transform: uppercase;
    margin-bottom: 10px !important;
    position: relative;
    padding-bottom: 15px;
}

h2.values-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--accent-orange);
}

.values-subtitle {
    font-family: 'Inter', sans-serif !important;
    font-size: 0.9em !important;
    color: #666 !important;
    font-style: italic;
    margin-top: 20px !important;
    margin-bottom: 30px !important;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.value-card {
    padding: 25px 0;
    border-top: 3px solid var(--accent-orange);
}

.value-heading {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    font-size: 0.95em !important;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #1a1a1a !important;
    margin-bottom: 10px !important;
}

.value-card p {
    font-family: 'Inter', sans-serif !important;
    font-size: 0.8em !important;
    color: #666 !important;
    line-height: 1.6 !important;
    font-style: italic;
}

/* ========================================
   SLIDE: MEET YOUR COACH
   ======================================== */
.slide-coach {
    padding: 0 !important;
}

.coach-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    width: 100%;
    height: 100%;
    align-items: center;
}

.coach-left {
    padding: 50px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.coach-photo-large {
    width: 220px;
    height: 220px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
    border: 3px solid rgba(255, 107, 0, 0.12);
}

h2.coach-name-large {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 800 !important;
    font-size: 2em !important;
    color: #1a1a1a !important;
    margin-bottom: 5px !important;
}

.coach-role-large {
    font-family: 'Inter', sans-serif !important;
    font-size: 0.75em !important;
    font-weight: 600 !important;
    color: var(--accent-orange) !important;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.coach-right {
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h2.coach-brand {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 800 !important;
    font-size: 2.5em !important;
    color: #1a1a1a !important;
    text-transform: uppercase;
    margin-bottom: 20px !important;
}

.coach-bio {
    font-family: 'Inter', sans-serif !important;
    font-size: 0.9em !important;
    color: #555 !important;
    line-height: 1.7 !important;
    margin-bottom: 30px !important;
}

.coach-quote {
    font-family: 'Inter', sans-serif !important;
    font-size: 0.9em !important;
    font-style: italic !important;
    color: #555 !important;
    line-height: 1.6 !important;
    background: #FFF8F0;
    border-left: 3px solid var(--accent-orange);
    padding: 20px 25px;
    margin: 0;
    border-radius: 0 8px 8px 0;
}

/* ========================================
   SLIDE: FINAL (Questions & Next Steps)
   ======================================== */
.slide-final {
    text-align: center !important;
    background: #fffafa !important;
    /* Very subtle warm white */
}

.final-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

h1.final-title {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 800 !important;
    font-size: 4em !important;
    color: #1a1a1a !important;
    line-height: 1.1 !important;
    text-transform: uppercase;
    margin-bottom: 30px !important;
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

h1.final-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: var(--accent-orange);
}

.final-subtitle {
    font-family: 'Inter', sans-serif !important;
    font-size: 1.2em !important;
    color: #555 !important;
    margin-bottom: 50px !important;
    font-weight: 400;
}

.final-box {
    background: #F9F7F2;
    /* Creamy background */
    padding: 40px;
    border-radius: 8px;
    text-align: left;
    border-left: 4px solid var(--accent-orange);
    margin-bottom: 50px;
}

h3.final-box-title {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1.1em !important;
    color: #1a1a1a !important;
    text-transform: uppercase;
    margin-bottom: 20px !important;
    letter-spacing: 0.05em;
}

.final-list {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.final-list li {
    font-family: 'Inter', sans-serif !important;
    font-size: 1em !important;
    color: #444 !important;
    margin-bottom: 12px !important;
    padding-left: 30px;
    position: relative;
}

.final-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: bold;
}

.final-footer {
    font-family: 'Outfit', sans-serif !important;
    font-size: 1.3em !important;
    font-weight: 700 !important;
    color: var(--accent-orange) !important;
    margin-top: 20px !important;
}

/* ========================================
   SLIDE: BIOHACKING MINDSET (VISUAL)
   ======================================== */
.slide-mindset-visual {
    padding: 20px;
    text-align: center;
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mindset-visual-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.biohacking-process {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 40px 0;
}

.process-step {
    background: #fdfdfd;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 12px;
    width: 250px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.step-label {
    font-weight: 800;
    font-size: 1.5em;
    /* Big Title */
    margin-bottom: 10px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step-icon {
    font-size: 2em;
    margin-bottom: 15px;
    color: var(--accent-orange);
}

.process-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.process-list li {
    padding: 6px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.9em;
    color: #555;
}

.process-list li:last-child {
    border-bottom: none;
}

.process-arrow {
    font-size: 3em;
    color: #ccc;
    font-weight: 300;
}

.process-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 0 20px;
}

.system-circle {
    width: 180px;
    height: 180px;
    background: var(--text-dark);
    /* Black Box concept */
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 4px solid var(--accent-orange);
    z-index: 2;
}

.system-text {
    font-size: 2em;
    font-weight: 800;
}

.system-sub {
    font-size: 0.8em;
    opacity: 0.8;
}

.autonomy-badge {
    margin-top: -15px;
    background: var(--accent-orange);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9em;
    z-index: 3;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(255, 107, 53, 0.4);
    /* Assuming accent orange for shadow */
}

.mindset-footer {
    font-size: 1.5em;
    font-style: italic;
    color: #666;
    margin-top: 30px;
    font-weight: 300;
}

/* Zone Colors */
.input-zone {
    border-top: 4px solid #3498db;
    /* Input Blue */
}

.output-zone {
    border-top: 4px solid #2ecc71;
    /* Output Green */
}

/* ========================================
   SLIDE: FOUNDER QUOTE
   ======================================== */
.slide-founder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    padding: 60px;
}

.founder-quote-text {
    font-size: 2.5em;
    font-style: italic;
    font-weight: 300;
    line-height: 1.4;
    color: var(--text-dark);
    margin-bottom: 40px;
    max-width: 900px;
}

.founder-name {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--accent-orange);
}

.founder-role {
    font-size: 1.1em;
    color: #666;
    margin-top: 5px;
}

/* ========================================
   SLIDE: THANK YOU
   ======================================== */
.slide-thankyou {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: var(--bg-cream);
    /* or white */
}

.thankyou-title {
    font-size: 4em;
    font-weight: 800;
    color: var(--accent-orange);
    margin-bottom: 30px;
    text-transform: uppercase;
}

.thankyou-message {
    font-size: 2.5em;
    font-weight: 300;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 20px;
}

.thankyou-sub {
    font-size: 1.5em;
    color: #666;
    max-width: 800px;
    line-height: 1.5;
    margin-bottom: 40px;
}

.thankyou-divider {
    width: 100px;
    height: 4px;
    background: var(--accent-orange);
    margin-bottom: 40px;
}

.thankyou-closing {
    font-size: 1.2em;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   SLIDE: EDUCATION
   ======================================== */
.slide-education {
    padding: 20px 60px !important;
    text-align: left;
}

.education-title {
    /* Reuse values-title style */
    font-family: 'Outfit', sans-serif !important;
    font-weight: 800 !important;
    font-size: 2.8em !important;
    color: #1a1a1a !important;
    text-transform: uppercase;
    margin-bottom: 10px !important;
    position: relative;
    padding-bottom: 15px;
}

.education-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--accent-orange);
}

.education-subtitle {
    font-family: 'Inter', sans-serif !important;
    font-size: 1.1em !important;
    color: #666 !important;
    margin-bottom: 40px !important;
}

.education-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.edu-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.edu-card:hover {
    transform: translateY(-5px);
}

.edu-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.edu-card-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #333;
}

.edu-card-text {
    font-size: 0.9em;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
}

.edu-link {
    color: var(--accent-orange);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9em;
}

/* ========================================
   SLIDE: FINAL LEFT
   ======================================== */
.slide-final-left {
    padding: 0 60px !important;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.final-left-content {
    max-width: 900px;
}

.final-title-left {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 800 !important;
    font-size: 3em !important;
    color: #1a1a1a !important;
    text-transform: uppercase;
    margin-bottom: 10px !important;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.final-title-left::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 5px;
    background: var(--accent-orange);
}

.final-subtitle-left {
    font-family: 'Inter', sans-serif !important;
    font-size: 1.2em !important;
    color: #555 !important;
    margin-bottom: 40px !important;
}

.final-box-left {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    border-left: 5px solid var(--accent-orange);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.final-box-heading {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 20px !important;
    letter-spacing: 1px;
}

.final-list-left {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.final-list-left li {
    font-size: 1.1em;
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
    color: #444;
}

.final-list-left li::before {
    content: '➔';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: bold;
}

.final-footer-left {
    font-size: 1.3em;
    font-weight: 700;
    color: var(--accent-orange);
    font-family: 'Outfit', sans-serif;
}