@media (max-width: 900px) {
    .left-column .socials {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
        margin-bottom: 10px;
    }
    .social-icon {
        font-size: 1.5rem;
        width: 32px;
        height: 32px;
        margin: 0 4px 8px 4px;
        padding: 6px;
        border-radius: 50%;
        background: #222;
        color: #fff;
        transition: background 0.2s, color 0.2s;
    }
    .social-icon:hover {
        background: #009605;
        color: #fff200;
    }
        .button-nav ul {
            padding: 0;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            flex-direction: row;
            gap: 6px;
            align-items: center;
            justify-content: center;
        }
        .button-nav li {
            flex: 1 1 45%;
            min-width: 140px;
            margin: 0;
            box-sizing: border-box;
        }
            .button-nav a {
                font-size: 0.95rem;
                padding: 8px 0;
                width: 100%;
                min-width: 90px;
                display: block;
                border-radius: 6px;
                background: #222;
                color: #fff;
                text-align: center;
                box-shadow: 0 2px 8px rgba(0,0,0,0.2);
                transition: background 0.2s, color 0.2s;
                margin-bottom: 0;
            }
        .button-nav a:hover {
            background: #009605;
            color: #fff200;
        }
        .left-column .socials {
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
            margin-bottom: 10px;
        }
}
/* ---  Base Setup --- */
html, body {
    height: 100%;
    margin: 0;
    background-color: #000;
    color: white;
    font-family: 'Montserrat', sans-serif;
}

/* --- Three-Column Grid Layout --- */
.page-container {
        display: grid;
        grid-template-columns: 1fr 2fr 2fr;
        align-items: center;
        gap: 40px;
        padding: 2rem;
        height: 100vh;
        box-sizing: border-box;
}

@media (max-width: 900px) {
    .desktop-socials {
        display: none !important;
    }
    .mobile-socials {
        display: flex !important;
        justify-content: center;
        gap: 16px;
        background: rgba(0,0,0,0.95);
        padding: 16px 0 10px 0;
        margin: 40px 0 0 0;
        width: 100%;
        box-shadow: 0 -2px 8px rgba(0,0,0,0.2);
    }
    .social-icon {
        font-size: 1.3rem;
        width: 28px;
        height: 28px;
        margin: 0 4px;
        padding: 4px;
        border-radius: 50%;
        background: #222;
        color: #fff;
        transition: background 0.2s, color 0.2s;
    }
    .social-icon:hover {
        background: #009605;
        color: #fff200;
    }
    .desktop-nav {
        display: none !important;
    }
    .mobile-nav {
        display: block !important;
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
        z-index: 101;
    }
    #dropdown-toggle {
        background-color: #5fa62e;
        color: #fff;
        border: none;
        border-radius: 5px;
        padding: 20px;
        font-size: 1.3rem;
        font-weight: bold;
        cursor: pointer;
        margin: 24px auto 10px auto;
        width: 80vw;
        max-width: 400px;
        display: block;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        text-align: center;
        letter-spacing: 1px;
        transition: background 0.3s, color 0.2s;
    }
    #dropdown-toggle:hover {
        background-color: #288f00;
        color: #fff200;
    }
    #dropdown-menu {
        opacity: 0;
        visibility: hidden;
        position: absolute;
        left: 50%;
        transform: translate(-50%, -10px);
        margin: 0 auto;
        background-color: #5fa62e;
        width: 80vw;
        max-width: 400px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        z-index: 101;
        border-radius: 5px;
        transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
        padding: 0;
        text-align: center;
        margin-bottom: 16px;
        pointer-events: none;
    }
    #dropdown-menu.open {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, 0);
        pointer-events: auto;
    }
    #dropdown-menu li {
        border-bottom: 1px solid #288f00;
    }
    #dropdown-menu li:last-child {
        border-bottom: none;
    }
    #dropdown-menu a {
        color: #fff;
        padding: 20px 0;
        text-decoration: none;
        display: block;
        font-weight: bold;
        border-radius: 0;
        background: none;
        box-shadow: none;
        text-align: center;
        font-size: 1.3rem;
        letter-spacing: 1px;
        transition: background 0.3s, color 0.2s;
    }
    #dropdown-menu a:hover {
        background-color: #288f00;
        color: #fff200;
    }
    .page-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 10px;
        height: auto;
        padding: 0.5rem;
    }
    .left-column {
        margin-bottom: 10px;
        padding: 0;
    }
    .center-column {
        margin-bottom: 10px;
        padding: 0 5vw;
    }
    .center-column h1 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    .center-column p {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    .right-column {
        margin-bottom: 0;
        padding: 0;
    }
    .image-container {
        display: block;
        width: 95vw;
        max-width: 400px;
        margin: 16px auto 80px auto;
        overflow: visible;
    }
    .image-container img {
        width: 100%;
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        object-fit: contain;
        display: block;
    }
}

.desktop-socials {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.mobile-socials {
    display: none;
}
.desktop-nav {
    display: flex;
}
.mobile-nav {
    display: none;
}

/* --- Column Content Styling --- */
.left-column .socials {
    display: flex;
    flex-direction: column; /* Stacks the "Follow" title and icons vertically */
    align-items: center; /* Centers the icons */
}

.center-column {
    padding-right: 20px; /* Adds some space next to the text */
}

.right-column {
    display: flex;
    flex-direction: column; /* Stacks the buttons and the image vertically */
    gap: 20px; /* Space between buttons and image */
}

.image-container img {
    width: 100%; /* Makes the image fill its container */
    border-radius: 10px;
}

/* --- Button and Icon Styling (Mostly Unchanged) --- */
.socials h2 {
    margin-bottom: 15px;
}

.social-icon {
    display: flex; /* Using flex for perfect centering */
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    margin-bottom: 15px; /* Space between icons */
    font-size: 24px;
    color: white;
    background-color: #333;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-icon:hover {
    background-color: #007bff;
}

.button-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.button-nav a {
    display: block;
    background-color: #009605;
    color: white;
    padding: 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s;
}

.button-nav a:hover {
    background-color: #004011;
}