        /* Modern CSS Reset & Basics */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        :root {
            --bg-color: #ffffff;
            --text-color: #000000;
            --hover-bg: #f5f5f5;
            --hover-color: #222222;
            --transition-speed: 0.3s;
        }

        html,
        body {
            height: 100%;
        }

        body {
            font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: var(--bg-color);
            color: var(--text-color);
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .container {
            width: 100%;
            max-width: 1140px;
            padding: 0 1rem;
            margin: 0 auto;
        }

        /* Header & Logo */
        header {
            width: 100%;
        }

        .logo-container {
            text-align: center;
            padding: 2.5rem 0;
        }

        .logo-container img {
            max-width: 100%;
            height: 15rem;
            /* Preserving original height scaling */
            object-fit: contain;
        }

        /* Social Navigation Grid */
        .social-nav {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 1rem;
            margin-bottom: 2.5rem;
            align-items: center;
        }

        .social-link {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 1.5rem 1rem;
            color: var(--text-color);
            text-decoration: none;
            border-radius: 12px;
            transition: background-color var(--transition-speed) ease,
                color var(--transition-speed) ease,
                transform var(--transition-speed) cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .social-link svg {
            width: 32px;
            height: 32px;
            fill: currentColor;
            transition: transform var(--transition-speed) cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .social-link:hover,
        .social-link:focus-visible {
            background-color: var(--hover-bg);
            color: var(--hover-color);
            outline: none;
        }

        .social-link:hover svg {
            transform: scale(1.15) translateY(-2px);
        }

        /* Responsive behavior for socials */
        @media (max-width: 768px) {
            .social-nav {
                grid-template-columns: repeat(3, 1fr);
                gap: 0.75rem;
            }

            .logo-container img {
                height: 12rem;
            }
        }

        @media (max-width: 480px) {
            .social-nav {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.5rem;
            }

            .logo-container img {
                height: 10rem;
            }
        }

        /* Main Photo image container */
        .photo-container {
            text-align: center;
            flex-grow: 1;
            /* Pushes footer down if there is one */
            display: flex;
            justify-content: center;
            align-items: flex-start;
            width: 100%;
            padding: 0 1rem 3rem 1rem;
        }

        .photo-container img {
            max-width: 100%;
            height: auto;
            max-height: 100%;

        }