/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        gap: 1rem;
        background-color: #333;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        padding: 1rem 0;
    }

    .nav-links.active {
        display: flex;
    }

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

    .community-layout {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 2rem;
    }
    
    .community-text {
        flex: 1;
        text-align: left;
    }
    
}