    /* Base Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            background-color: #f5f5f5; /* Just for contrast against the footer */
        }

        /* ----- Dark Section Styles ----- */
        .footer-dark {
            background-color: #222222;
            padding: 40px 24px 30px;
        }

        .footer-grid {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
        }

        .footer-col h3 {
            color: #ffffff;
            font-size: 15px;
            font-weight: 400;
            margin-bottom: 20px;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 16px;
        }

        .footer-col ul li a {
            color: #9c9c9c;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s ease-in-out;
        }

        .footer-col ul li a:hover {
            color: #ffffff;
        }

        /* Donate Button */
        .btn-donate {
            display: inline-block;
            background-color: #df3644;
            color: #ffffff;
            text-align: center;
            text-decoration: none;
            padding: 14px 0;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 400;
            width: 100%;
            transition: background-color 0.2s;
            border: none;
            cursor: pointer;
        }

        .btn-donate:hover {
            background-color: #c92f3b;
        }

        /* Social Networks */
        .social-title {
            color: #ffffff;
            font-size: 14px;
            font-weight: 400;
            margin-bottom: 16px;
        }

        .social-icons {
            display: flex;
            gap: 10px;
        }

        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            background-color: #555555;
            color: #ffffff;
            border-radius: 50%;
            text-decoration: none;
            font-size: 14px;
            transition: background-color 0.2s;
        }

        .social-icons a:hover {
            background-color: #777777;
        }

        /* ----- Light Section Styles ----- */
        .footer-light {
            background-color: #ffffff;
            padding: 30px 24px;
        }

        .light-container {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
        }

        .brand-section {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .brand-logo {
            width: 65px;
            height: 65px;
            object-fit: contain;
            border-radius: 50%;
            border: 1px solid #e0e0e0; /* subtle border matching image */
            padding: 2px;
        }

        .brand-text {
            color: #333333;
            font-size: 14px;
            font-weight: 300;
            line-height: 1.5;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .legal-section {
            color: #777777;
            font-size: 14px;
        }

        .legal-section a {
            color: #777777;
            text-decoration: none;
        }
        
        .legal-section a:hover {
            text-decoration: underline;
        }
        /* =========================================
           Responsive Breakpoints (Desktop vs Mobile)
           ========================================= */

        /* Desktop Layout (Match "ed958530-853d-4279-9947-d779e5856957") */
        @media (min-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                grid-template-areas:
                    "about materials"
                    "contacts socials"
                    "donate socials";
                gap: 0 100px;
            }

            .grid-about { grid-area: about; }
            .grid-materials { grid-area: materials; }
            
            .grid-contacts { 
                grid-area: contacts; 
                margin-top: 10px; 
            }
            
            .grid-donate { 
                grid-area: donate; 
                margin-top: 10px;
            }

            .btn-donate {
                max-width: 380px; /* Constrain width to left column */
            }
            
            .grid-socials { 
                grid-area: socials; 
                margin-top: 30px; 
            }

            .light-container {
                justify-content: space-between;
                align-items: flex-end;
            }

            .legal-section {
                display: flex;
                flex-direction: column;
                align-items: flex-end;
                gap: 8px;
            }

            .legal-mobile-row {
                display: flex;
                flex-direction: column;
                align-items: flex-end;
                gap: 8px;
            }
        }

        /* Mobile Layout (Match "1785477346894.jpeg") */
        @media (max-width: 767px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }

            .grid-about { grid-column: 1 / 2; }
            .grid-materials { grid-column: 2 / 3; }
            
            .grid-contacts { 
                grid-column: 1 / 2; 
                margin-top: 10px; 
            }
            
            .grid-donate { 
                grid-column: 1 / -1; 
                margin-top: 25px; 
            }
            
            .grid-socials { 
                grid-column: 1 / -1; 
                margin-top: 25px; 
            }

            .light-container {
                flex-direction: column;
            }

            .brand-section {
                margin-bottom: 30px;
            }

            .legal-mobile-row {
                display: flex;
                justify-content: space-between;
                margin-bottom: 25px;
            }
            
            .legal-dev {
                text-align: center;
                color: #999999;
            }
        }