        .custom-footer {
            background-color: #f8f9fa;
            padding: 2.5rem 0 1.5rem;
            margin-top: auto;
            border-top: 1px solid #e9ecef;
            color: #6c757d;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            gap: 40px;
            flex-wrap: wrap;
        }

        .footer-section {
            flex: 1;
            min-width: 200px;
        }

        .footer-brand .footer-logo {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .footer-section h4 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #2d3748;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

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

        .footer-section ul li {
            margin: 0.5rem 0;
        }

        .footer-section ul li a {
            text-decoration: none;
            color: #6c757d;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer-section ul li a:hover {
            color: #667eea;
            padding-left: 0.25rem;
        }

        .newsletter-form {
            margin-bottom: 1rem;
        }

        .newsletter-form input {
            width: 100%;
            max-width: 250px;
            padding: 0.5rem 0.75rem;
            border: 1px solid #e9ecef;
            border-radius: 6px;
            font-size: 0.9rem;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            transition: all 0.3s ease;
        }

        .newsletter-form input:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        .social-icons {
            display: flex;
            gap: 0.75rem;
            margin-top: 1rem;
        }

        .social-icons a {
            font-size: 1.25rem;
            color: #6c757d;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-icons a:hover {
            color: #667eea;
            transform: translateY(-2px);
        }

        .footer-bottom {
            text-align: center;
            padding: 1.5rem 0 0;
            margin-top: 2rem;
            font-size: 0.9rem;
            color: #6c757d;
            border-top: 1px solid #e9ecef;
        }

        .footer-bottom p {
            margin: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .footer-container {
                flex-direction: column;
                gap: 2rem;
                padding: 0 1.5rem;
            }

            .newsletter-form input {
                max-width: 100%;
            }
        }