:root {
    /* HubSpot Palette - Light Mode (Default) */
    --bg-color: #f5f8fa;
    --bg-shape-color: #ffffff;
    /* For surfaces */
    --text-primary: #33475b;
    /* Obsidian */
    --text-secondary: #516f90;
    --accent-color: #ff7a59;
    /* HubSpot Orange */
    --accent-hover: #ff8f73;
    --accent-glow: rgba(255, 122, 89, 0.3);
    --border-color: #cbd6e2;
    /* Flint */
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.5);
    --shadow-sm: 0 2px 4px rgba(45, 62, 80, 0.1);
    --shadow-md: 0 8px 16px rgba(45, 62, 80, 0.1);

    --font-main: 'Inter', sans-serif;
    --font-heading: 'Lora', serif;
    /* Artisanal/Editorial feel */
}

[data-theme="dark"] {
    /* HubSpot Palette - Dark Mode */
    --bg-color: #1e2a36;
    /* Deep Obsidian */
    --bg-shape-color: #2d3e50;
    /* Obsidian */
    --text-primary: #ffffff;
    --text-secondary: #cbd6e2;
    /* Earthenware */
    --accent-color: #ff7a59;
    --accent-hover: #ff9d85;
    --accent-glow: rgba(255, 122, 89, 0.4);
    --border-color: #405e75;
    --glass-bg: rgba(45, 62, 80, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 16px rgba(0, 0, 0, 0.3);
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
    line-height: 1.7;
    /* Increased for better readability */
    letter-spacing: 0.01em;
    /* Slight breathing room */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.02em;
    /* Fix "letters too close" issue */
    line-height: 1.3;
}

/* Three.js Canvas */
#webgl-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    opacity: 0.6;
    /* Slight fade for content readability */
}

/* Theme Toggle Button */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 20px;
}

.header-btn-ingresar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    font-family: var(--font-main) !important;
    font-weight: 600;
    font-size: 0.95rem;
    color: #fff !important;
    background: var(--accent-color);
    border: none;
    border-radius: 4px;
    text-decoration: none !important;
    transition: background 0.3s ease, transform 0.2s ease;
}

.header-btn-ingresar:hover {
    background: var(--accent-hover);
    color: #fff !important;
    transform: translateY(-1px);
}

.theme-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.theme-btn:hover {
    background: var(--bg-shape-color);
    box-shadow: var(--shadow-sm);
    color: var(--accent-color);
}

/* Header Overrides */
#header {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    transition: background 0.3s ease, border 0.3s ease;
}

.nav-menu a {
    font-family: var(--font-main) !important;
    color: var(--text-secondary) !important;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu .active>a {
    color: var(--accent-color) !important;
}

/* Hero Section */
#hero {
    background: transparent !important;
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

#hero h1 {
    font-size: 3.8rem;
    letter-spacing: 0.03em;
    /* More breathing room */
    line-height: 1.25;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 500;
    /* Lora looks elegant even at lower weights */
}

/* Hide static hero image to reveal 3D background */
#hero .hero-img {
    display: none !important;
}

/* Center hero text since image is gone */
#hero .row {
    justify-content: center;
    text-align: center;
}

#hero .col-lg-6 {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
    align-items: center;
}

#hero h2 {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 2rem auto;
}

#hero .btn-get-started {
    background: var(--accent-color);
    border: none;
    border-radius: 4px;
    /* HubSpot style rounded corners, not pill */
    padding: 12px 32px;
    font-weight: 600;
    color: #fff;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

#hero .btn-get-started:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px var(--accent-glow);
}

/* ======= 3 Steps Section ======= */
.steps-section {
    background: var(--accent-color) !important;
    padding: 80px 0 !important;
    position: relative;
    z-index: 1;
}

.steps-section .container {
    position: relative;
}

.steps-title {
    color: #fff !important;
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.3;
}

.steps-title-underline {
    position: relative;
    display: inline-block;
}

.steps-title-underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 2px;
    transform: skewY(-1deg);
}

.steps-row {
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.step-card {
    position: relative;
    text-align: center;
    padding: 2rem 1.5rem;
    height: 100%;
}

.step-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.12);
    line-height: 1;
    pointer-events: none;
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
    border: 3px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.step-icon i {
    font-size: 2rem;
    color: var(--accent-color);
}

.step-icon-1 {
    border-color: rgba(0, 168, 122, 0.9);
}

.step-icon-1 i {
    color: #00a87a;
}

.step-icon-2 {
    border-color: rgba(0, 156, 234, 0.9);
}

.step-icon-2 i {
    color: #009cea;
}

.step-icon-3 {
    border-color: rgba(255, 255, 255, 0.95);
}

.step-icon-3 i {
    color: var(--accent-color);
}

.step-heading {
    color: #fff !important;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.step-desc {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}

@media (max-width: 767px) {
    .steps-section {
        padding: 60px 0 !important;
    }
    
    .steps-title {
        font-size: 1.75rem;
        margin-bottom: 2.5rem;
    }
    
    .step-card {
        padding: 2rem 1rem;
    }
    
    .step-number {
        font-size: 5rem;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
    }
    
    .step-icon i {
        font-size: 1.75rem;
    }
}

/* Sections General */
section {
    position: relative;
    z-index: 1;
    background: transparent !important;
}

.section-bg {
    background: transparent !important;
}

.section-title h2 {
    font-family: var(--font-heading) !important;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.section-title p {
    font-family: var(--font-main) !important;
    color: var(--text-secondary);
}

/* About section – dark mode background + unify fonts */
.about .container {
    background-color: var(--bg-shape-color) !important;
}

.about .content h3 {
    font-family: var(--font-heading) !important;
    color: var(--text-primary);
    font-weight: 600;
}

.about .content p,
.about .content ul,
.about .content ul li {
    font-family: var(--font-main) !important;
    color: var(--text-secondary);
}

.about .content ul i {
    color: var(--accent-color);
}

/* Services / Features Formatting */
.icon-box {
    background: var(--bg-shape-color) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 8px !important;
    /* HubSpot soft round */
    box-shadow: var(--shadow-sm) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.icon-box:hover {
    transform: translateY(-5px) !important;
    box-shadow: var(--shadow-md) !important;
    border-color: var(--accent-color) !important;
}

.icon-box h3 {
    font-family: var(--font-heading) !important;
    color: var(--text-primary);
}

.icon-box p,
.icon-box .description {
    font-family: var(--font-main) !important;
    color: var(--text-secondary);
}

.icon-box .icon i {
    color: var(--accent-color) !important;
}

/* Services Section with Gradient Background */
#services {
    background: linear-gradient(to right, #FFEBEF, #FFBF9D) !important;
    padding: 80px 0 !important;
}

/* Modelos de formularios: título y descripción fijos (no cambian con dark mode) */
#services .section-title h2 {
    color: #33475b !important;
}

#services .section-title p {
    color: #516f90 !important;
}

/* Services Carousel Styles */
.services-carousel-wrapper {
    position: relative;
    padding: 20px 0;
    margin-top: 40px;
    overflow: hidden;
}

.services-carousel {
    position: relative;
}

.services-carousel .item {
    padding: 10px;
}

.services-carousel .owl-stage-outer {
    padding: 10px 0;
    overflow: visible;
}

.services-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}

.services-carousel .owl-item {
    display: flex;
    align-items: stretch;
}

.services-carousel .icon-box {
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Navigation Arrows */
.services-carousel .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
    margin: 0;
    padding: 0 10px;
}

.services-carousel .owl-nav button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff !important;
    border: none !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #666 !important;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    margin: 0 !important;
    line-height: 1;
}

.services-carousel .owl-nav button:hover {
    background: #f5f5f5 !important;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    color: var(--accent-color) !important;
}

.services-carousel .owl-nav button.owl-prev {
    left: 0;
    position: absolute;
}

.services-carousel .owl-nav button.owl-next {
    right: 0;
    position: absolute;
}

.services-carousel .owl-nav button span {
    display: none;
}

.services-carousel .owl-nav button i {
    font-size: 24px;
    line-height: 1;
}

/* Dots Navigation */
.services-carousel .owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
    position: relative;
    z-index: 5;
}

.services-carousel .owl-dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5) !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    cursor: pointer;
    transition: all 0.3s ease;
}

.services-carousel .owl-dots button.active {
    width: 12px;
    height: 12px;
    background: #fff !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.services-carousel .owl-dots button span {
    display: none;
}

/* Mobile Styles */
@media (max-width: 767px) {
    #services {
        padding: 60px 0 !important;
    }
    
    #services .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .services-carousel-wrapper {
        padding: 20px 0;
        margin-top: 30px;
        position: relative;
        overflow: visible;
    }
    
    .services-carousel .item {
        padding: 5px 8px;
    }
    
    .services-carousel .owl-stage-outer {
        padding: 20px 0;
        overflow: visible;
    }
    
    .services-carousel .owl-nav {
        padding: 0;
        width: 100%;
        left: 0;
    }
    
    .services-carousel .owl-nav button {
        width: 40px;
        height: 40px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    }
    
    .services-carousel .owl-nav button i {
        font-size: 18px;
    }
    
    .services-carousel .owl-nav button.owl-prev {
        left: 10px;
    }
    
    .services-carousel .owl-nav button.owl-next {
        right: 10px;
    }
    
    .services-carousel .owl-dots {
        margin-top: 25px;
        gap: 6px;
    }
    
    .services-carousel .owl-dots button {
        width: 6px;
        height: 6px;
    }
    
    .services-carousel .owl-dots button.active {
        width: 10px;
        height: 10px;
    }
    
    /* Make cards more prominent on mobile */
    .services-carousel .icon-box {
        padding: 25px 20px !important;
        margin: 0;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
        border-radius: 12px !important;
    }
    
    .services-carousel .icon-box img {
        margin-bottom: 15px;
        border-radius: 8px;
    }
    
    .services-carousel .icon-box h3 {
        font-size: 1.5rem;
        margin-bottom: 12px;
        font-weight: 600;
    }
    
    .services-carousel .icon-box .description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

@media (min-width: 768px) {
    .services-carousel-wrapper {
        padding: 20px 60px;
    }
    
    .services-carousel .owl-nav button.owl-prev {
        left: -20px;
    }
    
    .services-carousel .owl-nav button.owl-next {
        right: -20px;
    }
}

/* Clients */
#clients {
    padding: 80px 0;
}

/* Override template white borders so dark mode uses theme border color */
.clients .clients-wrap {
    border-top: none !important;
    border-left: none !important;
}

.clients-wrap {
    margin: 0 -0.5rem;
}

.clients-wrap [class*="col-"] {
    padding: 0 0.5rem;
    margin-bottom: 1rem;
}

.clients .client-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 0.7rem;
    min-height: 160px;
    background: var(--bg-shape-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.clients .client-logo:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-sm);
}

.client-logo img {
    max-width: 100%;
    max-height: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo img:hover {
    filter: none;
    opacity: 1;
}

@media (max-width: 767px) {
    #clients {
        padding: 60px 0;
    }
    .clients .client-logo {
        padding: 1.5rem 1rem;
        min-height: 130px;
    }
    .client-logo img {
        max-height: 120px;
    }
}

/* FAQ – unify fonts + dark mode text color */
.faq .faq-list a {
    font-family: var(--font-main) !important;
    color: var(--text-primary) !important;
}

.faq .faq-list a.collapse,
.faq .faq-list a.collapsed {
    color: var(--text-primary) !important;
}

.faq .faq-list a.collapsed:hover {
    color: var(--accent-color) !important;
}

.faq .faq-list p {
    font-family: var(--font-main) !important;
    color: var(--text-secondary) !important;
}

.faq .faq-list i {
    color: var(--accent-color);
}

/* Contact section – dark mode */
.contact .info {
    background: var(--bg-shape-color) !important;
    border-color: var(--border-color) !important;
}

.contact .info h4 {
    color: var(--text-primary) !important;
}

.contact .info p {
    color: var(--text-secondary) !important;
}

.contact .info i {
    color: var(--accent-color) !important;
    background: var(--border-color) !important;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
    background: var(--accent-color) !important;
    color: #fff !important;
}

.contact .php-email-form {
    background: var(--bg-shape-color) !important;
    border-color: var(--border-color) !important;
}

.contact .php-email-form label {
    color: var(--text-primary) !important;
}

.contact .php-email-form .form-control,
.contact .php-email-form input,
.contact .php-email-form textarea {
    background-color: var(--bg-shape-color) !important;
    border-color: var(--border-color) !important;
    color: var(--text-primary) !important;
}

.contact .php-email-form .form-control::placeholder,
.contact .php-email-form input::placeholder,
.contact .php-email-form textarea::placeholder {
    color: var(--text-secondary);
    opacity: 0.8;
}

.contact .php-email-form button[type="submit"] {
    background: var(--accent-color) !important;
}

.contact .php-email-form button[type="submit"]:hover {
    background: var(--accent-hover) !important;
}

/* Footer – dark mode */
#footer {
    background: var(--bg-shape-color) !important;
    color: var(--text-secondary) !important;
    border-top: 1px solid var(--border-color) !important;
}

#footer .footer-top {
    background: transparent !important;
    border-top: 1px solid var(--border-color) !important;
    border-bottom: 1px solid var(--border-color) !important;
    padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info h3,
#footer h3 {
    color: var(--text-primary) !important;
}

#footer .footer-top .footer-info p {
    color: var(--text-secondary) !important;
}

#footer .footer-top h4,
.footer-newsletter h4,
#footer .footer-top .footer-links h4 {
    color: var(--text-primary) !important;
}

#footer .footer-top .footer-links ul a {
    color: var(--text-secondary) !important;
}

#footer .footer-top .footer-links ul a:hover {
    color: var(--accent-color) !important;
}

#footer .footer-top .footer-links ul i {
    color: var(--accent-color) !important;
}

#footer .footer-top .footer-newsletter p {
    color: var(--text-secondary) !important;
}

#footer .copyright {
    color: var(--text-secondary) !important;
}

#footer .copyright strong,
#footer .copyright span {
    color: var(--text-primary) !important;
}

#footer .credits {
    color: var(--text-secondary) !important;
}

#footer .credits a {
    color: var(--accent-color) !important;
}

#footer .credits a:hover {
    color: var(--accent-hover) !important;
}

#footer .footer-top .social-links a {
    background: var(--border-color) !important;
    color: var(--text-secondary) !important;
}

#footer .footer-top .social-links a:hover {
    background: var(--accent-color) !important;
    color: #fff !important;
}

/* Feature Tabs */
.features .nav-link {
    background: transparent !important;
    border: none !important;
    border-left: 3px solid var(--border-color) !important;
    padding-left: 1.5rem;
}

.features .nav-link.active {
    border-left: 3px solid var(--accent-color) !important;
    background: transparent !important;
}

.features .nav-link h4 {
    color: var(--text-primary);
    font-weight: 600;
}

.features .nav-link p {
    color: var(--text-secondary);
}

/* Pricing / CTA overrides for HubSpot look */
.cta {
    background: linear-gradient(to right, #FFEBEF, #FFBF9D) !important;
}

.cta h3,
.cta p {
    color: #1f1f1f !important;
}

.cta .cta-btn {
    border: 2px solid #1f1f1f !important;
    color: #1f1f1f !important;
    background: transparent !important;
    border-radius: 4px;
}

.cta .cta-btn:hover {
    background: #1f1f1f !important;
    color: var(--accent-color) !important;
}

/* Mobile Nav overrides */
.mobile-nav {
    background: var(--bg-shape-color) !important;
}


/* Update: Color Replacement */
:root {
    --accent-blue-dark: #042729;
    /* Replaces old #009cea */
}

/* Mobile Menu Animation */
.mobile-nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10000;
    padding: 0;
    margin-left: 20px;
    /* Override standard template fixed positioning */
    position: relative !important;
    top: auto !important;
    right: auto !important;
}

/* Ensure header elements align correctly on mobile */
@media (max-width: 991px) {
    #header .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .header-actions {
        margin-left: auto;
        /* Push to right, next to burger */
        margin-right: 0;
    }
}

.mobile-nav-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--text-primary);
    /* This will adapt to dark/light mode */
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
    transform-origin: center;
}

.mobile-nav-toggle.active .bar:first-child {
    transform: translateY(10.5px) rotate(45deg);
}

.mobile-nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.active .bar:last-child {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* Mobile Nav Styles - HubSpot Inspired */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-color) !important;
    z-index: 9999;
    padding: 80px 20px 20px 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
    opacity: 1 !important;
    visibility: visible !important;
    border-radius: 0 !important;
    bottom: auto;
    right: auto;
}

.mobile-nav.mobile-nav-active {
    transform: translateX(0);
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin-bottom: auto;
    /* Push buttons to bottom */
}

.mobile-nav li {
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
}

.mobile-nav a {
    font-family: var(--font-main) !important;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-primary) !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-nav a i {
    font-size: 1.5rem;
}

/* Mobile Bottom Buttons */
.mobile-buttons {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-btn {
    display: block;
    width: 100%;
    padding: 15px;
    text-align: center;
    font-weight: 600;
    border-radius: 4px;
    /* HubSpot style */
    font-size: 1rem;
    transition: all 0.3s ease;
}

.mobile-btn-primary {
    background: var(--accent-color);
    color: #fff;
    border: none;
}

.mobile-btn-secondary {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.mobile-btn-tertiary {
    background: #33475b;
    color: #fff;
    border: none;
}

/* Mobile Theme Toggle */
.mobile-theme-toggle {
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 0;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 10px;
    cursor: pointer;
}

.mobile-theme-toggle i {
    font-size: 1.3rem;
    color: var(--accent-color);
}