/* ===== Footer Styles START ===== */

        .footer {
            background: linear-gradient(135deg, 
                rgba(139, 105, 20, 0.1) 0%,
                rgba(75, 55, 40, 0.15) 50%,
                rgba(160, 82, 45, 0.1) 100%
            );
            backdrop-filter: blur(10px);
            border-top: 1px solid rgba(139, 105, 20, 0.2);
            padding: 20px;
            text-align: center;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: rgba(139, 105, 20, 0.8);
            margin-top: auto;
            position: relative;
            z-index: 50;
        }

        .footer-content {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
            align-items: center;
        }

        .footer-title {
            font-size: 16px;
            font-weight: 600;
            color: #8b4513;
            margin-bottom: 8px;
            background: linear-gradient(135deg, 
                #8b4513 0%, 
                #a0522d 50%, 
                #cd853f 100%
            );
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer-info {
            font-size: 14px;
            line-height: 1.6;
            opacity: 0.8;
        }

        .footer-email {
            color: #a0522d;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 4px 8px;
            border-radius: 4px;
            background: rgba(160, 82, 45, 0.1);
        }

        .footer-email:hover {
            color: #8b4513;
            background: rgba(160, 82, 45, 0.2);
            transform: translateY(-1px);
        }

        .footer-copyright {
            font-size: 12px;
            opacity: 0.6;
            margin-top: 8px;
        }
            

        /* Responsive Footer */
        @media (max-width: 768px) {
            .footer {
                padding: 15px;
            }
            
            .footer-title {
                font-size: 14px;
            }
            
            .footer-info {
                font-size: 12px;
            }
            
            .footer-email {
                font-size: 12px;
            }
        }  
        
        /* Dark Mode Footer */
        body.dark-mode .footer {
            background: linear-gradient(135deg, 
                rgba(59, 130, 246, 0.1) 0%,
                rgba(30, 64, 175, 0.15) 50%,
                rgba(100, 116, 139, 0.1) 100%
            );
            border-top: 1px solid rgba(59, 130, 246, 0.2);
            color: rgba(148, 163, 184, 0.9);
        }

        /* Dark Mode Footer Title */
        body.dark-mode .footer-title {
            color: #60a5fa;
            background: linear-gradient(135deg, 
                #3b82f6 0%, 
                #60a5fa 50%, 
                #93c5fd 100%
            );
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Dark Mode Footer Email */
        body.dark-mode .footer-email {
                        color: #93c5fd;
            background: rgba(59, 130, 246, 0.2);

        }

        body.dark-mode .footer-email:hover {
                        color: #ff1493;
            background: rgba(59, 130, 246, 0.1);

        }

        /* ===== Footer Styles END ===== */