        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: rgb(20, 20, 20);
            padding: 12px 40px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .navbar .logo img {
            height: 3rem;
            width: auto;
        }

        .navbar .nav-links {
            list-style: none;
            display: flex;
            gap: 0;
            margin: 0;
            padding: 0;
        }

        .navbar .nav-links li {
            padding: 0 20px;
            position: relative;
        }

        .navbar .nav-links li:not(:last-child) {
            border-right: 1px solid #ccc;
        }

        .navbar .nav-links a {
            text-decoration: none;
            color: rgb(200, 200, 200);
            font-weight: 500;
            padding: 8px 0px;
        }

        .navbar .nav-links a:hover {
            color: rgb(255, 255, 255);
        }

        /* SIDE PANEL */

        .side-panel {
            position: fixed;
            top: 76px;
            right: 0;
            width: 300px;
            height: calc(100% - 60px);
            background: #fff;
            box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
            transform: translateX(100%);
            transition: transform 0.4s ease;
            z-index: 1500;
            padding: 20px;
            overflow-y: auto;
            border: 1px solid #000000;
        }

        .side-panel.open {
            transform: translateX(0);
        }

        .side-panel .panel-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .side-panel .panel-header h3 {
            margin: 0;
            font-size: 18px;
            color: #000000;
        }

        .side-panel .panel-header span {
            font-size: 24px;
            cursor: pointer;
        }

        .side-panel ul {
            list-style: none;
            padding: 20px 0 0 0;
            margin: 0;
        }

        .side-panel ul li {
            margin: 12px 0;
        }

        .side-panel ul li a {
            color: #666;
            text-decoration: none;
            transition: color 0.3s;
        }

        .side-panel ul li a:hover {
            color: rgb(10, 50, 10);
            font-weight: bold;
        }

        /* FOOTER */

        .footer {
            background-color: rgb(20, 25, 20);
            /* Dark background matching navbar */
            color: rgb(200, 200, 200);
            padding: 0;
        }

        .footer-top {
            display: flex;
            justify-content: space-between;
            padding: 40px 40px;
            border-bottom: 1px solid rgb(50, 50, 50);
        }

        .footer-links-container {
            display: flex;
            flex: 2;
            gap: 40px;
            flex-wrap: wrap;
            border-right: 1px solid rgb(50, 50, 50);
            padding-right: 40px;
        }

        .footer-column {
            min-width: 150px;
            margin-bottom: 20px;
        }

        .column-title {
            color: rgb(255, 255, 255);
            font-size: 0.9rem;
            text-transform: uppercase;
            margin-bottom: 15px;
        }

        .footer-column ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-column ul li {
            margin-bottom: 5px;
        }

        .footer-column a {
            color: rgb(200, 200, 200);
            text-decoration: none;
            font-size: 0.9rem;
        }

        .footer-column a:hover {
            color: rgb(255, 255, 255);
            text-decoration: underline;
        }

        .footer-cta {
            flex: 1;
            padding-left: 40px;
            max-width: 350px;
        }

        .cta-title {
            color: rgb(255, 255, 255);
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .footer-cta p {
            font-size: 0.9rem;
            margin-bottom: 20px;
            line-height: 1.4;
        }

        .cta-button {
            display: inline-block;
            background-color: #007bff;
            color: white;
            text-decoration: none;
            padding: 10px 20px;
            font-weight: bold;
            border-radius: 3px;
            transition: background-color 0.3s;
        }

        .cta-button:hover {
            background-color: #0056b3;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 40px;
            background-color: rgb(10, 12, 10);
            font-size: 0.8rem;
            flex-wrap: wrap;
            gap: 15px;
        }

        .copyright-section {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .footer-logo {
            height: 1.5rem;
            width: auto;
        }

        .legal-links a,
        .stock-price p,
        .stock-price .price {
            color: rgb(150, 150, 150);
            text-decoration: none;
            margin-right: 15px;
        }

        .legal-links a:hover {
            color: rgb(255, 255, 255);
            text-decoration: underline;
        }

        .stock-price .price {
            color: rgb(255, 255, 255);
            font-weight: bold;
        }

        .social-media-bottom {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .social-media-bottom p {
            color: rgb(150, 150, 150);
        }

        .social-icons {
            display: flex;
            gap: 10px;
        }

        .social-icons a {
            color: rgb(150, 150, 150);
            font-size: 1rem;
            text-decoration: none;
            transition: color 0.3s;
        }

        .social-icons a:hover {
            color: rgb(255, 255, 255);
        }

        @media (max-width: 992px) {
            .footer-top {
                flex-direction: column;
                padding-right: 40px;
            }

            .footer-links-container {
                border-right: none;
                border-bottom: 1px solid rgb(50, 50, 50);
                padding-right: 0;
                padding-bottom: 20px;
                margin-bottom: 20px;
            }

            .footer-cta {
                padding-left: 0;
                max-width: 100%;
            }

            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
            }

            .copyright-section,
            .legal-links,
            .stock-price,
            .social-media-bottom {
                margin-bottom: 10px;
            }
        }

        @media (max-width: 500px) {
            .footer-links-container {
                gap: 20px;
                justify-content: space-around;
            }

            .footer-column {
                min-width: 120px;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                flex-direction: column;
                align-items: flex-start;
            }

            .navbar .nav-links {
                margin-top: 10px;
                flex-direction: column;
                gap: 10px;
                width: 100%;
            }

            .navbar .nav-links a {
                display: block;
                width: 100%;
            }
        }