:root {
            --footer-bg: #1c1917;
            --footer-text-color: #adb5bd;
            --footer-heading-color: #ffffff;
            --footer-link-color: #adb5bd;
            --footer-link-hover-color: #ffffff;
            --footer-border-color: #3b3f44;
        }

        /* Basic body styles for demonstration */
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            margin: 0;
            display: grid;
            grid-template-rows: 1fr auto;
            min-height: 100vh;
            background-color: #f1f1f1;
        }

        .main-content {
            padding: 2rem;
        }

        /* FOOTER STYLES START HERE */

        .footer-classic {
            background-color: var(--footer-bg);
            color: var(--footer-text-color);
            padding: 3rem 1.5rem;
        }

        .footer-classic__container {
            max-width: 1140px;
            margin: 0 auto;
        }

        /* General link styling for the entire footer */
        .footer-classic a {
            color: var(--footer-link-color);
            text-decoration: none;
            transition: color 0.2s ease-in-out;
        }

        .footer-classic a:hover {
            color: var(--footer-link-hover-color);
            text-decoration: underline;
        }
        
        /* Prevent underline on logo */
        .footer-classic__brand .logo:hover {
            text-decoration: none;
        }

        .footer-classic__main {
            display: grid;
            /* Mobile-first: single column */
            grid-template-columns: 1fr;
            gap: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid var(--footer-border-color);
        }

        .footer-classic__brand .logo {
            display: block;
            width: 150px;
            margin-bottom: 1rem;
        }

        .footer-classic__brand .logo path {
            fill: var(--footer-heading-color);
            transition: fill 0.2s ease-in-out;
        }

        .footer-classic__brand .logo:hover path {
            fill: var(--footer-link-hover-color);
        }

        .footer-classic__brand p {
            font-size: 0.875rem;
            line-height: 1.5;
            margin: 0;
        }

        .footer-classic__heading {
            font-size: 1rem;
            font-weight: 600;
            color: var(--footer-heading-color);
            margin-top: 0;
            margin-bottom: 1rem;
        }

        .footer-classic__links ul {
            margin: 0;
            padding: 0;
            list-style: none;
        }
        
        .footer-classic__links li {
            margin-bottom: 0.75rem;
        }

        .footer-classic__bottom {
            padding-top: 2rem;
            font-size: 0.875rem;

            /* Mobile-first: stack items and center them */
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
            text-align: center;
        }

        .footer-classic__copyright {
            margin: 0;
        }

        .footer-classic__social ul {
            margin: 0;
            padding: 0;
            list-style: none;
            display: flex;
            gap: 1.5rem;
        }
        
        /* Remove underline from social icons */
        .footer-classic__social a:hover {
            text-decoration: none;
        }

        .footer-classic__social svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }


        /* Media query for tablets and larger */
        @media (min-width: 768px) {
            .footer-classic__main {
                /* Three-column layout for larger screens */
                grid-template-columns: 2fr 1fr 1fr;
                gap: 3rem;
            }
            
            .footer-classic__bottom {
                /* Arrange bottom items horizontally */
                flex-direction: row;
                justify-content: space-between;
                text-align: left;
            }
        }