body {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            background-color: #f8fafc;
        }

        .main-content {
            flex: 1 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 50px 20px;
        }

/* Footer Styling */
        .footer-dark {
            background-color: #0f172a;
            /* Deep Black/Slate */
            color: #94a3b8;
        }

        .footer-link {
            color: #94a3b8;
            text-decoration: none;
            font-size: 0.85rem;
            transition: 0.3s;
        }

        .footer-link:hover {
            color: #3b82f6;
            padding-left: 5px;
        }

        .social-link {
            width: 35px;
            height: 35px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: 0.3s;
            text-decoration: none;
        }

        .social-link:hover {
            background: #3b82f6;
            border-color: #3b82f6;
            transform: translateY(-3px);
        }