* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: Calibri, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            background-color: #F7F7F8;
            color: #333;
        }
        
        .navbar {
            background-color: #ffffff;
            padding: 0.6rem 0;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .navbar-brand img {
            height: 42px;
            width: auto;
        }
        
        .navbar-nav .nav-link {
            color: #333 !important;
            font-weight: 500;
            margin-left: 1rem;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: #86BC25 !important;
        }

        .navbar-nav .nav-link.active {
            color: #86BC25 !important;
        }

        .navbar-nav .dropdown-toggle.active {
            color: #86BC25 !important;
        }

        .dropdown-menu {
            background-color: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            z-index: 1001;
        }

        .dropdown-item {
            color: #333;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .dropdown-item:hover {
            background-color: #86BC25;
            color: white;
        }
        
        .btn-get-started {
    background: #86BC25;
    color: #555 !important;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease, filter 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

        
        .btn-get-started:hover {
    background: #86BC25;
}


        .article-hero {
            background-color: #F7F7F8;
            color: #555;
            padding: 4rem 2rem;
            text-align: center;
        }

        .article-hero h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .article-hero .meta {
            font-size: 1rem;
            color: #555;
        }

        .article-content {
            max-width: 800px;
            margin: 4rem auto;
            padding: 0 2rem;
            background: white;
            border-radius: 8px;
            padding: 2rem;
        }

        .article-content h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #86BC25;
            margin: 2rem 0 1rem 0;
            line-height: 1.3;
        }

        .article-content h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #000;
            margin: 1.5rem 0 0.5rem 0;
        }

        .article-content p {
            color: #555;
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .article-content ul {
            margin: 1rem 0 1rem 2rem;
            color: #555;
        }

        .article-content li {
            margin-bottom: 0.5rem;
            line-height: 1.8;
        }

        .back-link {
            display: inline-block;
            margin-bottom: 2rem;
            color: #86BC25;
            text-decoration: none;
            font-weight: 600;
        }

        .back-link:hover {
            color: #86BC25;
        }

        footer {
            background-color: #111313;
            border-top: 1px solid #e5e7eb;
            padding: 3rem 0;
            margin-top: 4rem;
        }

        footer h6 {
            font-size: 0.95rem;
            font-weight: 700;
            color: white;
        }

        footer a {
            color: #aaa;
            transition: color 0.3s ease;
            text-decoration: none;
        }

        footer a:hover {
            color: #86BC25 !important;
        }

        
        .whatsapp-float {
            position: fixed;
            right: 20px;
            bottom: 20px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: #25d366;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 8px #0003;
            z-index: 999;
            animation: pulse 1.5s infinite;
        }

        .whatsapp-float img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.15);
            }
        }

        .article-hero h1 .highlight {
            color: #86BC25;
        }

        .theme-toggle {
            background: none;
            border: none;
            box-shadow: none;
            cursor: pointer;
            padding: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: auto;
            margin-right: 1.5rem;
            transition: all 0.3s ease;
            color: #111;
        }

        .theme-toggle svg {
            width: 24px;
            height: 24px;
            stroke: currentColor;
            stroke-width: 2;
            fill: none;
            transition: all 0.3s ease;
        }

        body.dark-mode {
            background-color: #1a1a1a;
            color: #e0e0e0;
        }

        body.dark-mode .navbar {
            background-color: #2a2a2a;
            border-bottom: 1px solid #444;
        }

        body.dark-mode .navbar-nav .nav-link {
            color: #e0e0e0 !important;
        }

        body.dark-mode .navbar-nav .nav-link:hover {
            color: #86BC25 !important;
        }

        body.dark-mode .navbar-nav .nav-link.active {
            color: #86BC25 !important;
        }

        body.dark-mode .navbar-nav .dropdown-toggle.active {
            color: #86BC25 !important;
        }

        body.dark-mode .dropdown-menu {
            background-color: #2a2a2a;
            border-color: #444;
        }

        body.dark-mode .dropdown-item {
            color: #e0e0e0;
        }

        body.dark-mode .dropdown-item:hover {
            background-color: #86BC25;
            color: white;
        }

        body.dark-mode .article-content {
            background: #2a2a2a;
            color: #e0e0e0;
        }

        body.dark-mode .article-content h2 {
            color: #86BC25;
        }

        body.dark-mode .article-content h3 {
            color: #e0e0e0;
        }

        body.dark-mode .article-content p {
            color: #b0b0b0;
        }

        body.dark-mode .article-content ul {
            color: #b0b0b0;
        }

        body.dark-mode .article-hero {
            background-color: #111;
            color: #f1f1f1;
        }

        body.dark-mode .article-hero h1 {
            color: #f1f1f1;
        }

        body.dark-mode .article-hero .meta {
            color: #c5c5c5;
        }

        body.dark-mode .back-link {
            color: #86BC25;
        }

        body.dark-mode .back-link:hover {
            color: #86BC25;
        }

        body.dark-mode footer,
        body.dark-mode footer.bg-light {
            background-color: #1a1a1a !important;
            border-top: 1px solid #333;
        }

        body.dark-mode footer h6 {
            color: #ffffff !important;
        }

        body.dark-mode footer a {
            color: #b0b0b0 !important;
        }

        body.dark-mode footer a:hover {
            color: #d3d3d8 !important;
        }

        body.dark-mode footer .text-muted {
            color: #888 !important;
        }

        body.dark-mode footer .text-dark {
            color: #ffffff !important;
        }

        body.dark-mode footer hr {
            border-color: #333 !important;
        }

        body.dark-mode footer svg {
            stroke: #b0b0b0;
        }

        body.dark-mode footer a:hover svg {
            stroke: #4a9eff;
        }

        body.dark-mode .theme-toggle {
            color: #fff;
            background: none;
            border: none;
            box-shadow: none;
        }

        footer .row.align-items-center {
            justify-content: center;
            text-align: center;
        }

        footer .col-md-4 {
            flex: 0 1 auto;
            text-align: center;
        }

        footer .col-md-4.text-center {
            text-align: center;
        }

        footer .col-md-4.text-end {
            text-align: center;
        }

        @media (max-width: 1024px) {
            .navbar {
                padding: 0.75rem 0;
            }

            .navbar-brand img {
                height: 45px;
            }

            .navbar-nav .nav-link {
                margin-left: 0.75rem;
                font-size: 0.95rem;
            }

            .btn-get-started {
    background: #86BC25;
    color: #555 !important;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease, filter 0.3s ease;
    text-decoration: none;
    display: inline-block;
}


            .theme-toggle {
                margin-right: 1rem;
            }

            .container-fluid {
                padding-left: 1.5rem !important;
                padding-right: 1.5rem !important;
            }

            .whatsapp-float {
                right: 20px;
                bottom: 20px;
                width: 60px;
                height: 60px;
            }

            .article-hero {
                padding: 3rem 2rem;
            }

            .article-hero h1 {
                font-size: 2rem;
                margin-bottom: 0.75rem;
            }

            .article-hero .meta {
                font-size: 0.95rem;
            }

            .article-content {
                max-width: 750px;
                margin: 3rem auto;
                padding: 1.75rem;
            }

            .article-content h2 {
                font-size: 1.6rem;
                margin: 1.75rem 0 0.875rem 0;
            }

            .article-content h3 {
                font-size: 1.2rem;
                margin: 1.25rem 0 0.5rem 0;
            }

            .article-content p {
                font-size: 0.95rem;
                margin-bottom: 0.875rem;
            }

            .article-content ul {
                margin: 0.875rem 0 0.875rem 1.75rem;
                font-size: 0.95rem;
            }

            .article-content li {
                margin-bottom: 0.4rem;
            }

            .back-link {
                font-size: 0.9rem;
            }

            footer .row {
                gap: 1.5rem !important;
            }

            footer h6 {
                font-size: 0.95rem;
            }

            footer small {
                font-size: 0.8rem;
            }

            footer .row.align-items-center {
                gap: 1rem !important;
                justify-content: center !important;
                text-align: center !important;
            }

            footer .col-md-4 {
                flex: 0 1 auto !important;
                text-align: center !important;
            }

            footer .col-md-4 p {
                font-size: 0.85rem;
            }

            footer .col-md-4 a {
                font-size: 0.85rem;
            }

            footer .col-md-4 svg {
                width: 18px !important;
                height: 18px !important;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 0.6rem 0;
            }

            .navbar-brand img {
                height: 40px;
            }

            .navbar-nav {
                margin-left: 0 !important;
            }

            .navbar-nav .nav-link {
                margin-left: 0.5rem;
                font-size: 0.85rem;
            }

            .btn-get-started {
    background: #86BC25;
    color: #555 !important;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease, filter 0.3s ease;
    text-decoration: none;
    display: inline-block;
}


            .theme-toggle {
                margin-right: 0.75rem;
                width: 20px;
                height: 20px;
                color: #111;
                background: none;
                border: none;
                box-shadow: none;
            }

            .theme-toggle svg {
                width: 20px !important;
                height: 20px !important;
            }

            body.dark-mode .theme-toggle {
                color: #fff;
                background: none;
                border: none;
                box-shadow: none;
            }

            .container-fluid {
                padding-left: 1rem !important;
                padding-right: 1rem !important;
            }

            .whatsapp-float {
                right: 15px;
                bottom: 15px;
                width: 55px;
                height: 55px;
            }

            .article-hero {
                padding: 2.5rem 1.5rem;
                min-height: auto;
            }

            .article-hero h1 {
                font-size: 1.75rem;
                margin-bottom: 0.5rem;
                line-height: 1.3;
            }

            .article-hero .meta {
                font-size: 0.85rem;
                color: #bbb;
            }

            .article-content {
                max-width: 100%;
                margin: 2rem 1rem;
                padding: 1.5rem;
                border-radius: 8px;
            }

            .article-content h2 {
                font-size: 1.4rem;
                margin: 1.5rem 0 0.75rem 0;
            }

            .article-content h3 {
                font-size: 1.1rem;
                margin: 1rem 0 0.5rem 0;
            }

            .article-content p {
                font-size: 0.9rem;
                line-height: 1.7;
                margin-bottom: 0.75rem;
            }

            .article-content ul {
                margin: 0.75rem 0 0.75rem 1.5rem;
                font-size: 0.9rem;
                padding-left: 0;
            }

            .article-content li {
                margin-bottom: 0.35rem;
                line-height: 1.7;
            }

            .back-link {
                font-size: 0.9rem;
                margin-bottom: 1.5rem;
            }

            footer {
                padding: 2rem 1rem !important;
            }

            footer .row {
                display: flex !important;
                flex-direction: column !important;
                gap: 1.5rem !important;
                justify-content: flex-start !important;
            }

            footer .row > div {
                flex: none !important;
                width: 100% !important;
                min-width: auto !important;
            }

            footer img {
                max-width: 120px !important;
            }

            footer h6 {
                font-size: 0.95rem;
                margin-bottom: 1rem !important;
            }

            footer ul {
                padding-left: 0;
            }

            footer li {
                margin-bottom: 0.75rem !important;
            }

            footer small {
                font-size: 0.8rem;
            }

            footer svg {
                width: 16px !important;
                height: 16px !important;
            }

            footer hr {
                margin: 1rem 0 !important;
            }

            footer .row.align-items-center {
                flex-direction: column !important;
                gap: 1rem !important;
                justify-content: center !important;
                text-align: center !important;
            }

            footer .col-md-4 {
                width: 100% !important;
                text-align: center !important;
                padding: 0 !important;
            }

            footer .col-md-4.text-center {
                text-align: center !important;
            }

            footer .col-md-4.text-end {
                text-align: center !important;
            }

            footer .col-md-4 p {
                margin-bottom: 0 !important;
                font-size: 0.8rem;
            }

            footer .col-md-4 a {
                font-size: 0.8rem;
                margin-right: 0.5rem !important;
            }

            footer .col-md-4 svg {
                width: 16px !important;
                height: 16px !important;
                margin-left: 0.5rem !important;
            }

            footer .col-md-4 span {
                margin: 0 0.3rem !important;
            }
        }

        @media (max-width: 640px) {
            .navbar {
                padding: 0.5rem 0;
            }

            .navbar-brand img {
                height: 35px;
            }

            .navbar-nav {
                margin-left: 0 !important;
            }

            .navbar-nav .nav-link {
                margin-left: 0.3rem;
                font-size: 0.75rem;
            }

            .btn-get-started {
    background: #86BC25;
    color: #555 !important;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease, filter 0.3s ease;
    text-decoration: none;
    display: inline-block;
}


            .theme-toggle {
                margin-right: 0.5rem;
                width: 18px;
                height: 18px;
            }

            .theme-toggle svg {
                width: 18px !important;
                height: 18px !important;
            }

            .container-fluid {
                padding-left: 0.75rem !important;
                padding-right: 0.75rem !important;
            }

            .whatsapp-float {
                right: 12px;
                bottom: 12px;
                width: 50px;
                height: 50px;
            }

            .article-hero {
                padding: 2rem 1rem;
            }

            .article-hero h1 {
                font-size: 1.5rem;
                margin-bottom: 0.5rem;
                line-height: 1.3;
            }

            .article-hero .meta {
                font-size: 0.8rem;
            }
            body.dark-mode .article-hero {
                color: white;
                background-color: #232323;
            }

            .article-content {
                max-width: 100%;
                margin: 1.5rem 0.75rem;
                padding: 1.25rem;
                border-radius: 8px;
            }

            .article-content h2 {
                font-size: 1.25rem;
                margin: 1.25rem 0 0.625rem 0;
            }

            .article-content h3 {
                font-size: 1rem;
                margin: 0.875rem 0 0.4rem 0;
            }

            .article-content p {
                font-size: 0.875rem;
                line-height: 1.6;
                margin-bottom: 0.625rem;
            }

            .article-content ul {
                margin: 0.625rem 0 0.625rem 1.25rem;
                font-size: 0.875rem;
                padding-left: 0;
            }

            .article-content li {
                margin-bottom: 0.3rem;
                line-height: 1.6;
            }

            .back-link {
                font-size: 0.85rem;
                margin-bottom: 1.25rem;
            }

            footer {
                padding: 1.5rem 1rem !important;
            }

            footer img {
                max-width: 100px !important;
                margin-bottom: 0.75rem !important;
            }

            footer h6 {
                font-size: 0.9rem;
                margin-bottom: 0.75rem !important;
            }

            footer .mb-4 {
                margin-bottom: 0.75rem !important;
            }

            footer li {
                margin-bottom: 0.5rem !important;
            }

            footer small {
                font-size: 0.75rem;
            }

            footer .text-muted.small {
                margin-bottom: 0.5rem !important;
            }

            footer p {
                margin-bottom: 0.5rem !important;
            }

            footer svg {
                width: 14px !important;
                height: 14px !important;
                margin-right: 0.4rem !important;
            }

            footer hr {
                margin: 0.75rem 0 !important;
            }

            footer .row.align-items-center {
                flex-direction: column !important;
                gap: 0.75rem !important;
                justify-content: center !important;
                text-align: center !important;
            }

            footer .col-md-4 {
                width: 100% !important;
                text-align: center !important;
                padding: 0 !important;
            }

            footer .col-md-4.text-center {
                text-align: center !important;
            }

            footer .col-md-4.text-end {
                text-align: center !important;
            }

            footer .col-md-4 p {
                margin-bottom: 0 !important;
                font-size: 0.75rem;
            }

            footer .col-md-4 a {
                font-size: 0.75rem;
                margin-right: 0.3rem !important;
            }

            footer .col-md-4 svg {
                width: 14px !important;
                height: 14px !important;
                margin-left: 0.3rem !important;
            }

            footer .col-md-4 span {
                margin: 0 0.2rem !important;
                font-size: 0.75rem;
            }
        }

        @media (max-width: 480px) {
            .navbar {
                padding: 0.4rem 0;
            }

            .navbar-brand img {
                height: 30px;
            }

            .navbar-nav {
                margin-left: 0 !important;
            }

            .navbar-nav .nav-link {
                margin-left: 0;
                font-size: 0.65rem;
                padding: 0.4rem 0 !important;
            }

            .btn-get-started {
    background: #86BC25;
    color: #555 !important;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease, filter 0.3s ease;
    text-decoration: none;
    display: inline-block;
}


            .theme-toggle {
                margin-right: 0.3rem;
                width: 16px;
                height: 16px;
            }

            .theme-toggle svg {
                width: 16px !important;
                height: 16px !important;
            }

            .container-fluid {
                padding-left: 0.5rem !important;
                padding-right: 0.5rem !important;
            }

            .article-hero {
                padding: 1.5rem 1rem;
            }

            .article-hero h1 {
                font-size: 1.3rem;
                margin-bottom: 0.4rem;
                line-height: 1.2;
            }

            .article-hero .meta {
                font-size: 0.75rem;
            }

            .article-content {
                max-width: 100%;
                margin: 1.25rem 0.5rem;
                padding: 1rem;
                border-radius: 8px;
            }

            .article-content h2 {
                font-size: 1.1rem;
                margin: 1rem 0 0.5rem 0;
            }

            .article-content h3 {
                font-size: 0.95rem;
                margin: 0.75rem 0 0.35rem 0;
            }

            .article-content p {
                font-size: 0.8rem;
                line-height: 1.5;
                margin-bottom: 0.5rem;
            }

            .article-content ul {
                margin: 0.5rem 0 0.5rem 1rem;
                font-size: 0.8rem;
                padding-left: 0;
            }

            .article-content li {
                margin-bottom: 0.25rem;
                line-height: 1.5;
                padding-left: 0;
            }

            .back-link {
                font-size: 0.8rem;
                margin-bottom: 1rem;
            }

            footer {
                padding: 1rem !important;
            }

            footer .mb-5 {
                margin-bottom: 1rem !important;
            }

            footer .row {
                gap: 1rem !important;
            }

            footer img {
                max-width: 90px !important;
                margin-bottom: 0.5rem !important;
            }

            footer h6 {
                font-size: 0.85rem;
                margin-bottom: 0.5rem !important;
            }

            footer ul.list-unstyled {
                margin-bottom: 0;
            }

            footer li {
                margin-bottom: 0.35rem !important;
            }

            footer small {
                font-size: 0.7rem;
                line-height: 1.4;
            }

            footer .text-muted {
                font-size: 0.7rem !important;
            }

            footer svg {
                width: 12px !important;
                height: 12px !important;
                margin-right: 0.3rem !important;
            }

            footer a {
                font-size: 0.7rem;
            }

            footer hr {
                margin: 0.5rem 0 !important;
            }

            .whatsapp-float {
                right: 10px;
                bottom: 10px;
                width: 45px;
                height: 45px;
            }

            footer .row.align-items-center {
                flex-direction: column !important;
                gap: 0.5rem !important;
                justify-content: center !important;
                text-align: center !important;
            }

            footer .col-md-4 {
                width: 100% !important;
                text-align: center !important;
                padding: 0 !important;
            }

            footer .col-md-4.text-center {
                text-align: center !important;
            }

            footer .col-md-4.text-end {
                text-align: center !important;
            }

            footer .col-md-4 p {
                margin-bottom: 0 !important;
                font-size: 0.7rem;
                line-height: 1.4;
            }

            footer .col-md-4 a {
                font-size: 0.7rem;
                margin-right: 0.2rem !important;
            }

            footer .col-md-4 svg {
                width: 12px !important;
                height: 12px !important;
                margin-left: 0.2rem !important;
            }

            footer .col-md-4 span {
                margin: 0 0.15rem !important;
                font-size: 0.7rem;
            }
        }

        body.dark-mode .theme-toggle svg {
    stroke: #fff;
}
@media (max-width: 768px) {
    .theme-toggle {
        margin-right: 0.75rem;
        width: 45px;
        height: 45px;
        color: #111;
        
        border: none;
        box-shadow: none;
    }
}