        /* Footer Section */
        .footer {
            background: #0f2a1c;
            color: #ffffff;
            padding: 4rem 0 2rem;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-bottom: 3rem;
        }

        .footer-brand {
            max-width: 500px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .logo-circle {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 0.9rem;
            color: #ffffff;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .brand-name {
            font-size: 1.3rem;
            font-weight: 600;
            color: #ffffff;
            margin: 0 0 0.25rem 0;
            line-height: 1.2;
        }

        .brand-tagline {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            margin: 0;
            font-style: italic;
        }

        .brand-description {
            font-size: 1rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 1.5rem;
        }

        .made-with-love {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }

        .heart {
            font-size: 1rem;
        }

        .footer-links {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        .column-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 1rem;
        }

        .footer-nav {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-nav li {
            margin-bottom: 0.75rem;
        }

        .footer-nav a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

        .footer-nav a:hover {
            color: #ffffff;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .copyright p {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
            margin: 0;
        }

        .footer-legal {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .legal-link {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.3s ease;
        }

        .legal-link:hover {
            color: #ffffff;
        }

        .powered-by {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.8rem;
        }

        .footer-quote {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-quote p {
            font-size: 1rem;
            font-style: italic;
            color: rgba(255, 255, 255, 0.7);
            margin: 0;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Responsive Design for Footer */
        @media (max-width: 992px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .footer-links {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
            .footer {
                padding: 3rem 0 1.5rem;
            }
            
            .footer-container {
                padding: 0 1rem;
            }
            
            .footer-content {
                gap: 2rem;
            }
            
            .footer-links {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .footer-bottom-content {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
            
            .footer-legal {
                gap: 1rem;
            }
        }

        @media (max-width: 480px) {
            .footer-logo {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.75rem;
            }
            
            .logo-circle {
                width: 40px;
                height: 40px;
                font-size: 0.8rem;
            }
            
            .footer-legal {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
            }
            
            .made-with-love {
                flex-wrap: wrap;
            }
        }
