@media (max-width: 768px) {
    .navbar {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: block !important;
    }

    .site {
        margin-top: 0;
        padding-top: 0;
    }

    .site-header {
        height: auto;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .site-header-inner {
        flex-direction: column;
        height: auto;
        width: 100%;
        padding: 3rem 1rem;
        padding-top: 0;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .info-left {
        position: relative;
        width: 100%;
        max-width: 20rem;
        left: auto;
        right: auto;
        top: auto;
        text-align: center;
        align-items: center;
        order: 1;
    }

    .logo-container {
        order: 2;
        margin: 0;
    }

    .info-right {
        position: relative;
        width: 100%;
        max-width: 20rem;
        left: auto;
        right: auto;
        top: auto;
        text-align: center;
        align-items: center;
        order: 3;
    }

    .link-title,
    .link-subtitle {
        text-align: center;
        width: auto;
    }

    .icon-link {
        flex-direction: row;
        gap: 1rem;
        justify-content: center;
    }

    .logo-image {
        width: 10rem;
        height: 10rem;
    }

    .content-wrapper {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .logo-image {
        width: 8rem;
        height: 8rem;
    }

    .copy-icon {
        width: 3rem;
        height: 3rem;
        font-size: 1.25rem;
    }

    .link-title {
        font-size: 1rem;
    }

    .link-subtitle {
        font-size: 0.85rem;
    }
}