/* responsive.css */
@media (max-width: 1200px) {
    .nav-buttons {
        gap: 15px;
    }
    
    .nav-button {
        padding: 10px 20px;
        font-size: 16px;
    }
    
    .content-container {
        top: 110px;
        height: calc(100vh - 110px);
    }
}

@media (max-width: 992px) {
    .nav-buttons {
        padding: 12px 20px;
    }
    
    .content-container {
        top: 100px;
        height: calc(100vh - 100px);
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .nav-buttons {
        display: none;
        flex-direction: column;
        top: 120px;
        right: 30px;
        left: auto;
        transform: none;
        width: 200px;
        padding: 15px;
        border-radius: 15px;
    }
    
    .nav-buttons.mobile-show {
        display: flex;
    }
    
    .nav-button {
        width: 100%;
        text-align: center;
        padding: 12px;
    }
    
    .back-button, .mobile-menu-btn {
        width: 70px;
        height: 70px;
    }
    
    .back-button {
        top: 20px;
        left: 20px;
    }
    
    .back-button span, .mobile-menu-btn span {
        font-size: 14px;
    }
    
    .content-container {
        top: 80px;
        height: calc(100vh - 80px);
        padding-top: 0;
    }
}

@media (max-width: 480px) {
    .nav-buttons {
        right: 20px;
        width: 180px;
    }
    
    .back-button, .mobile-menu-btn {
        width: 60px;
        height: 60px;
    }
    
    .content-container {
        top: 70px;
        height: calc(100vh - 70px);
    }
}